diff --git a/.github/dependabot.yml b/.github/dependabot.yml deleted file mode 100644 index 0e71ac3..0000000 --- a/.github/dependabot.yml +++ /dev/null @@ -1,18 +0,0 @@ -# To get started with Dependabot version updates, you'll need to specify which -# package ecosystems to update and where the package manifests are located. -# Please see the documentation for all configuration options: -# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates - -version: 2 -updates: - # Maintain dependencies for GitHub Actions - - package-ecosystem: "github-actions" - directory: "/" - schedule: - interval: "daily" - - # Maintain dependencies for npm - - package-ecosystem: "pip" - directory: "/" - schedule: - interval: "daily" diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index f529e92..997205c 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,29 +1,28 @@ default_language_version: - python: python3.14 # set for project python version + python: python3.14 +default_stages: + - pre-push repos: - repo: local hooks: - - id: black-apply - name: black-apply - entry: uv run black + - id: ruff-format + name: ruff-format + entry: uv run ruff format --diff language: system pass_filenames: true - types: ["python"] + types: [ "python" ] + - id: mypy name: mypy entry: uv run mypy language: system pass_filenames: true - types: ["python"] - exclude: "tests/" - - id: ruff-apply - name: ruff-apply - entry: uv run ruff check --fix + types: [ "python" ] + exclude: "(tests/|output/|migrations/)" + + - id: ruff-check + name: ruff-check + entry: uv run ruff check language: system pass_filenames: true - types: ["python"] - # - id: pip-audit - # name: pip-audit - # entry: uv run pip-audit - # language: system - # pass_filenames: false + types: [ "python" ] diff --git a/Dockerfile b/Dockerfile index 2b5801b..b14d29e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,4 +16,4 @@ FROM public.ecr.aws/lambda/python:3.14 COPY --from=builder ${LAMBDA_TASK_ROOT} ${LAMBDA_TASK_ROOT} -CMD ["lambdas.my_function.lambda_handler"] +CMD ["lambdas.tokenizer_handler.lambda_handler"] diff --git a/LICENSE b/LICENSE index 261eeb9..7cdd900 100644 --- a/LICENSE +++ b/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [yyyy] [name of copyright owner] + Copyright 2026 MIT Libraries Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/Makefile b/Makefile index f009fa4..f8f6556 100644 --- a/Makefile +++ b/Makefile @@ -15,22 +15,26 @@ help: # Preview Makefile commands /^[-_[:alpha:]]+:.?*#/ { printf " %-15s%s\n", $$1, $$2 }' $(MAKEFILE_LIST) # ensure OS binaries aren't called if naming conflict with Make recipes -.PHONY: help venv install update test coveralls lint black mypy ruff safety lint-apply black-apply ruff-apply check-arch dist-dev publish-dev update-lambda-dev docker-clean +.PHONY: help venv install update test coveralls lint lint-fix security sam-build sam-invoke console check-arch dist-dev publish-dev update-lambda-dev docker-clean ############################################## # Python Environment and Dependency commands ############################################## -install: .venv .git/hooks/pre-commit # Install Python dependencies, hooks, and create virtual environment if not exists +install: .venv .git/hooks/pre-commit .git/hooks/pre-push # Install Python dependencies and create virtual environment if not exists uv sync --dev .venv: # Creates virtual environment if not found @echo "Creating virtual environment at .venv..." uv venv .venv -.git/hooks/pre-commit: # Sets up pre-commit hook if not setup - @echo "Installing pre-commit hooks..." - uv run pre-commit install +.git/hooks/pre-commit: # Sets up pre-commit commit hooks if not setup + @echo "Installing pre-commit commit hooks..." + uv run pre-commit install --hook-type pre-commit + +.git/hooks/pre-push: # Sets up pre-commit push hooks if not setup + @echo "Installing pre-commit push hooks..." + uv run pre-commit install --hook-type pre-push venv: .venv # Create the Python virtual environment @@ -50,44 +54,36 @@ coveralls: test # Write coverage data to an LCOV report uv run coverage lcov -o ./coverage/lcov.info #################################### -# Code quality and safety commands +# Code linting and formatting #################################### -lint: black mypy ruff # Run linters - -black: # Run 'black' linter and print a preview of suggested changes - uv run black --check --diff . - -mypy: # Run 'mypy' linter +lint: # Run linters + uv run ruff format --diff uv run mypy . - -ruff: # Run 'ruff' linter and print a preview of errors uv run ruff check . -safety: # Check for security vulnerabilities - uv run pip-audit - -lint-apply: black-apply ruff-apply # Apply changes with 'black' and resolve 'fixable errors' with 'ruff' - -black-apply: # Apply changes with 'black' - uv run black . - -ruff-apply: # Resolve 'fixable errors' with 'ruff' +lint-fix: # Run linting, auto fix behaviors where supported + uv run ruff format . uv run ruff check --fix . +security: # Check for security vulnerabilities + uv run pip-audit + #################################### # SAM Lambda #################################### -sam-build: # Build SAM image for running Lambda locally - sam build --template tests/sam/template.yaml +sam-build: # Build Docker image for running Lambda locally + sam build --template tests/sam/template.yaml --debug -sam-http-run: # Run lambda locally as an HTTP server - sam local start-api --template tests/sam/template.yaml --env-vars tests/sam/env.json +sam-invoke: # Invoke lambda locally with tests/sam/event.json + sam local invoke Tokenizer --template tests/sam/template.yaml --env-vars tests/sam/env.json --event tests/sam/event.json -sam-http-ping: # Send curl command to SAM HTTP server - curl --location 'http://localhost:3000/myapp' \ - --header 'Content-Type: application/json' \ - --data '{"msg":"in a bottle"}' +#################################### +# Convenience commands +#################################### +console: # Start a Python REPL with the project environment loaded + @echo "'exit' to quit console" + uv run ipython #################################### # Deployment to ECR @@ -126,7 +122,7 @@ publish-dev: dist-dev ## Build, tag and push (intended for developer-based manua docker image prune -f --filter "dangling=true" ## If this is a Lambda repo, uncomment the two lines below -update-lambda-dev: ## Updates the lambda with whatever is the most recent image in the ecr (intended for developer-based manual update) +update-lambda-dev: check-arch ## Updates the lambda with whatever is the most recent image in the ecr (intended for developer-based manual update) @ARCH_TAG=$$(cat .arch_tag); \ aws lambda update-function-code \ --region us-east-1 \ diff --git a/README.md b/README.md index cce3c39..b9db8ed 100644 --- a/README.md +++ b/README.md @@ -1,28 +1,6 @@ -# python-lambda-template +# timdex-semantic-builder -A template repository for creating Python lambda functions. - -## Repo Setup (delete this section and above after initial function setup) - -1. Rename "my_function" to the desired initial function name across the repo. (May be helpful to do a project-wide find-and-replace). -2. Update Python version if needed (note: AWS lambda cannot currently support versions higher than 3.9). -3. Install all dependencies with `make install` to create initial Pipfile.lock with latest dependency versions. -4. Add initial function description to README and update initial required ENV variable documentation as needed. -5. Update license if needed (check app-specific dependencies for licensing terms). -6. Check Github repository settings: - - Confirm repo branch protection settings are correct (see [dev docs](https://mitlibraries.github.io/guides/basics/github.html) for details) - - Confirm that all of the following are enabled in the repo's code security and analysis settings: - - Dependabot alerts - - Dependabot security updates - - Secret scanning -7. Create a Sentry project for the app if needed (we want this for most apps): - - Send initial exceptions to Sentry project for dev, stage, and prod environments to create them. - - Create an alert for the prod environment only, with notifications sent to the appropriate team(s). - - If *not* using Sentry, delete Sentry configuration from my_function.py and test_my_function_.py, and remove sentry_sdk from project dependencies. - -# my_function - -Description of the function/functions. +Accepts query string (keyword) and returns OpenSearch-ready token weights. ## Development @@ -32,17 +10,25 @@ Description of the function/functions. - To run unit tests: `make test` - To lint the repo: `make lint` +## opensearch-project directory + +This directory stores 3 files extracted from the `opensearch-neural-sparse-encoding-doc-v3-gte` model. + +We store them locally to reduce unnecessary downloads from huggingface, and because we don't need the full model, just these files. + +This repository should refresh these files whenever our pipeline repository updates the model version. + ## Testing Locally with AWS SAM ### SAM Installation -Ensure that AWS SAM CLI is installed: https://docs.aws.amazon.com/serverless-application-model/latest/developerguide/install-sam-cli.html. +Ensure that AWS SAM CLI is installed: . All following actions and commands should be performed from the root of the project (i.e. same directory as the `Dockerfile`). ### Building and Configuration -1- Create a JSON file for SAM that has environment variables for the container +1- Create a JSON file for SAM that has environment variables for the container - copy `tests/sam/env.json.template` to `tests/sam/env.json` (which is git ignored) - fill in missing sensitive env vars @@ -51,52 +37,61 @@ All following actions and commands should be performed from the root of the proj 2- Build Docker image: -```shell -make sam-build -``` - -### Invoking Lambda via HTTP requests - -The following outlines how to run the Lambda SAM docker image as an HTTP endpoint, accepting requests and returning respnoses similar to a lambda behind an ALB, Function URL, or API Gateway. - -1- Ensure any required AWS credentials set in terminal, and any other env vars in `tests/sam/env.json` up-to-date. - -2- Run HTTP server: - -```shell -make sam-http-run -``` - -This starts a server at `http://localhost:3000`. Requests must include a path, e.g. `/myapp`, but are arbitrary insofar as the lambda does not utilize them in the request payload. - -3- In another terminal, perform an HTTP request via another `Makefile` command: +> [!TIP] +> This step can take a few minutes and may appear to hang. ```shell -make sam-http-ping +make sam-build ``` -Response should have an HTTP status of `200` and respond with: - -```json -You have successfully called this lambda! -``` +> [!IMPORTANT] +> You need to rebuild when you change code. ### Invoking Lambda directly -While Lambdas can be invoked via HTTP methods (ALB, Function URL, etc.), they are also often invoked directly with an `event` payload. To do so with SAM, you do **not** need to first start an HTTP server with `make sam-run`, you can invoke the function image directly: +While Lambdas can be invoked via HTTP methods (ALB, Function URL, etc.), they are also often invoked directly with an `event` payload. You can invoke the function image directly: ```shell -echo '{"action": "ping"}' | sam local invoke -e - +echo '{"query": "hello world"}' | sam local invoke -e - ``` Response: -```text -You have successfully called this lambda! +```json +{ + "query": { + "bool": { + "should": [ + { + "rank_feature": { + "field": "embedding_full_record.[CLS]", + "boost": 1.0 + } + }, + { + "rank_feature": { + "field": "embedding_full_record.[SEP]", + "boost": 1.0 + } + }, + { + "rank_feature": { + "field": "embedding_full_record.world", + "boost": 3.4208686351776123 + } + }, + { + "rank_feature": { + "field": "embedding_full_record.hello", + "boost": 6.937756538391113 + } + } + ] + } + } +} ``` -As you can see from this response, the returning the same content even though it was invoked directly. - ### Troubleshoot #### Encounter error `botocore.exceptions.TokenRetrievalError` @@ -109,11 +104,11 @@ When running a Lambda via SAM, it attempts to parse and setup AWS credentials ju ### Build the container -`docker build -t my_function:latest .` +`docker build -t tokenizer:latest .` ### Run the container -`docker run -e WORKSPACE=dev -p 9000:8080 my_function:latest` +`docker run -e WORKSPACE=dev -p 9000:8080 tokenizer:latest` ### Call the container via HTTP from another terminal window @@ -123,17 +118,62 @@ If you have `jq` installed, you can pipe the output to get better formatted outp `curl -XPOST "http://localhost:9000/2015-03-31/functions/function/invocations" -d '{ "query": "hello world"}' | jq` +### Open a python console with application context + +- `make console` +- `from lambdas import tokenizer_handler` +- `tokenizer_handler.lambda_handler({"query": "hello world"}, {})` + +Response: + +```json +{ + "query":{ + "bool":{ + "should":[ + { + "rank_feature":{ + "field":"embedding_full_record.[CLS]", + "boost":1.0 + } + }, + { + "rank_feature":{ + "field":"embedding_full_record.[SEP]", + "boost":1.0 + } + }, + { + "rank_feature":{ + "field":"embedding_full_record.world", + "boost":3.4208686351776123 + } + }, + { + "rank_feature":{ + "field":"embedding_full_record.hello", + "boost":6.937756538391113 + } + } + ] + } + } +} +``` + ## Environment Variables +In local development, you can add a `.env` file to manage these. The file is excluded from git and docker builds via +ignore files. + ### Required ```shell -SENTRY_DSN=### If set to a valid Sentry DSN, enables Sentry exception monitoring. This is not needed for local development. WORKSPACE=### Set to `dev` for local development, this will be set to `stage` and `prod` in those environments by Terraform. ``` ### Optional ```shell -=### Description for optional environment variable +SENTRY_DSN=### If set to a valid Sentry DSN, enables Sentry exception monitoring. This is not needed for local development. ``` diff --git a/lambdas/config.py b/lambdas/config.py index 67e310d..34222b9 100644 --- a/lambdas/config.py +++ b/lambdas/config.py @@ -2,18 +2,20 @@ import os import sentry_sdk + +# Load .env file. Generally only used in local dev as we exclude from git and docker +from dotenv import load_dotenv from sentry_sdk.integrations.aws_lambda import AwsLambdaIntegration +load_dotenv() + logger = logging.getLogger(__name__) logger.setLevel(logging.DEBUG) class Config: - REQUIRED_ENV_VARS = ( - "WORKSPACE", - "SENTRY_DSN", - ) - OPTIONAL_ENV_VARS = ("WARNING_ONLY_LOGGERS",) + REQUIRED_ENV_VARS = ("WORKSPACE",) + OPTIONAL_ENV_VARS = ("LOG_LEVEL", "SENTRY_DSN", "WARNING_ONLY_LOGGERS") def check_required_env_vars(self) -> None: """Method to raise exception if required env vars not set.""" @@ -33,28 +35,20 @@ def sentry_dsn(self) -> str | None: return dsn return None + @property + def log_level(self) -> int: + level_str = os.getenv("LOG_LEVEL", "INFO").upper() + return getattr(logging, level_str, logging.INFO) + def configure_logger( root_logger: logging.Logger, *, - verbose: bool = False, warning_only_loggers: str | None = None, ) -> str: - """Configure application via passed application root logger. - - If verbose=True, 3rd party libraries can be quite chatty. For convenience, they can - be set to WARNING level by either passing a comma seperated list of logger names to - 'warning_only_loggers' or by setting the env var WARNING_ONLY_LOGGERS. - """ - if verbose: - root_logger.setLevel(logging.DEBUG) - logging_format = ( - "%(asctime)s %(levelname)s %(name)s.%(funcName)s() " - "line %(lineno)d: %(message)s" - ) - else: - root_logger.setLevel(logging.INFO) - logging_format = "%(asctime)s %(levelname)s %(name)s.%(funcName)s(): %(message)s" + """Configure application via passed application root logger.""" + root_logger.setLevel(Config().log_level) + logging_format = "%(asctime)s %(levelname)s %(name)s.%(funcName)s(): %(message)s" warning_only_loggers = os.getenv("WARNING_ONLY_LOGGERS", warning_only_loggers) if warning_only_loggers: @@ -76,17 +70,6 @@ def configure_logger( ) -def configure_dev_logger( - warning_only_loggers: str = ",".join( # noqa: FLY002 - ["asyncio", "botocore", "urllib3", "boto3", "smart_open"] - ), -) -> None: - """Invoke to setup DEBUG level console logging for development work.""" - os.environ["WARNING_ONLY_LOGGERS"] = warning_only_loggers - root_logger = logging.getLogger() - configure_logger(root_logger, verbose=True) - - def configure_sentry() -> None: CONFIG = Config() # noqa: N806 env = CONFIG.workspace diff --git a/lambdas/query_tokenizer.py b/lambdas/query_tokenizer.py new file mode 100644 index 0000000..fa82612 --- /dev/null +++ b/lambdas/query_tokenizer.py @@ -0,0 +1,98 @@ +import json +import logging +from typing import TYPE_CHECKING, cast + +if TYPE_CHECKING: + from os import PathLike + +from pathlib import Path + +import torch +from transformers import AutoTokenizer + +logger = logging.getLogger(__name__) + + +class QueryTokenizer: + """Tokenizer for generating sparse query vectors for OpenSearch neural sparse search. + + Uses the OpenSearch neural sparse encoding model (doc-v3-gte) to convert query text + into a sparse representation where each token is weighted by its IDF (Inverse Document + Frequency) score. The resulting dict maps vocabulary tokens to float weights, suitable + for use in OpenSearch `rank_feature` queries. + """ + + def __init__(self) -> None: + # Load tokenizer from local path + # Model: opensearch-neural-sparse-encoding-doc-v3-gte, stored in the repo + # to avoid network calls at Lambda cold start + tokenizer_path = "opensearch-project/opensearch-neural-sparse-encoding-doc-v3-gte" + + # Ensure tokenizer_path exists. This avoids a situation in which the AutoTokenizer + # will download the model from Hugging Face if it doesn't find the local files. + # We want to always use our local files or error if they don't exist. + if not Path(tokenizer_path).exists(): + msg = f"Tokenizer path not found: {tokenizer_path}" + raise FileNotFoundError(msg) + + self.tokenizer = AutoTokenizer.from_pretrained(tokenizer_path) + + # Load IDF weights from local file + idf_path = tokenizer_path + "/idf.json" + self.idf = self._load_idf(idf_path) + + def _load_idf(self, idf_path: str | PathLike[str]) -> torch.Tensor: + """Load IDF weights from a local JSON file into a vocabulary-sized tensor. + + IDF (Inverse Document Frequency) weights down-score tokens that appear + frequently across documents (e.g. "the", "and") and up-score rare, more + meaningful tokens. The resulting tensor is indexed by token ID, aligned + with the tokenizer's vocabulary. + """ + with open(idf_path) as f: + idf_dict = json.load(f) + + # Convert to tensor + idf_vector = [0] * self.tokenizer.vocab_size + for token, weight in idf_dict.items(): + token_id = cast("int", self.tokenizer.convert_tokens_to_ids(token)) + idf_vector[token_id] = weight + return torch.tensor(idf_vector) + + def tokenize_query(self, query_text: str) -> dict[str, float]: + """Convert query text into sparse token weights for OpenSearch rank_feature query. + + Tokenizes the input, marks which vocabulary tokens are present (known as a one-hot + vector in machine learning), then scales each by its IDF weight. Only tokens + present in the query with a non-zero IDF weight appear in the result. Token + strings are vocabulary tokens (not necessarily whole words) and float values are + their IDF-weighted scores. + """ + feature_query = self.tokenizer( + [query_text], + padding=True, + truncation=True, + return_tensors="pt", + return_token_type_ids=False, + ) + input_ids = feature_query["input_ids"] + + # Create one-hot vector and apply IDF weights + batch_size = input_ids.shape[0] + query_vector = torch.zeros(batch_size, self.tokenizer.vocab_size) + query_vector[torch.arange(batch_size).unsqueeze(-1), input_ids] = 1 + query_sparse_vector = query_vector * self.idf + + # Convert to dict format + return self._sparse_vector_to_dict(query_sparse_vector[0]) + + def _sparse_vector_to_dict(self, sparse_vector: torch.Tensor) -> dict[str, float]: + """Convert a 1D sparse tensor into a dict of token strings to float weights. + + Only non-zero entries are included in the output, keeping the result compact + and directly usable as an OpenSearch rank_feature query payload. + """ + token_indices = torch.nonzero(sparse_vector, as_tuple=True)[0].tolist() + non_zero_values = sparse_vector[token_indices].tolist() + tokens = self.tokenizer.convert_ids_to_tokens(token_indices) + return dict(zip(tokens, non_zero_values, strict=True)) diff --git a/lambdas/tokenizer_handler.py b/lambdas/tokenizer_handler.py new file mode 100644 index 0000000..051bc1f --- /dev/null +++ b/lambdas/tokenizer_handler.py @@ -0,0 +1,73 @@ +import logging +import time +from functools import lru_cache +from typing import TYPE_CHECKING + +if TYPE_CHECKING: + from aws_lambda_typing.context import Context + +from lambdas.config import Config, configure_logger, configure_sentry +from lambdas.query_tokenizer import QueryTokenizer + +# --------------------------------------- +# One-time, Lambda cold start setup +# --------------------------------------- +CONFIG = Config() +CONFIG.check_required_env_vars() + +root_logger = logging.getLogger() +log_config_message = configure_logger(root_logger) +logger = logging.getLogger(__name__) +logger.info(log_config_message) + +configure_sentry() + + +@lru_cache(maxsize=1) +def _get_tokenizer() -> QueryTokenizer: + """Return the module-level QueryTokenizer, created once and cached.""" + logger.info("Initializing QueryTokenizer (cold start)") + return QueryTokenizer() + + +# --------------------------------------- +# Lambda handler entrypoint +# --------------------------------------- +def lambda_handler(event: dict, lambda_context: Context) -> dict: + """Main Lambda handler for tokenizing queries for OpenSearch. + + Returns a JSON-serializable dict; the AWS Lambda runtime handles serialization. + """ + logger.debug("Received event: %s", event) + logger.debug("Lambda context: %s", lambda_context) + + query_tokenizer = _get_tokenizer() + + # Generate query tokens + query = event.get("query", "") + + if not query.strip(): + logger.warning("Received empty query in event: %s", event) + return {"error": "Query is required in the event payload."} + + start = time.perf_counter() + query_tokens = query_tokenizer.tokenize_query(query) + end = time.perf_counter() + logger.debug("Tokenization and IDF weighting took: %.4f seconds", end - start) + + # Build OpenSearch query + return { + "query": { + "bool": { + "should": [ + { + "rank_feature": { + "field": f"embedding_full_record.{token}", + "boost": weight, + } + } + for token, weight in query_tokens.items() + ] + } + } + } diff --git a/opensearch-project/opensearch-neural-sparse-encoding-doc-v3-gte/README.md b/opensearch-project/opensearch-neural-sparse-encoding-doc-v3-gte/README.md new file mode 100644 index 0000000..0e8c6de --- /dev/null +++ b/opensearch-project/opensearch-neural-sparse-encoding-doc-v3-gte/README.md @@ -0,0 +1,13 @@ +# OpenSearch Tokenizer files + +The files in this directory are sourced from a model hosted on [Huggingface](https://huggingface.co/opensearch-project/opensearch-neural-sparse-encoding-doc-v3-gte/tree/main). + +This is the license and copyright statement supplied with the files. + +## License + +This project is licensed under the [Apache v2.0 License](https://github.com/opensearch-project/neural-search/blob/main/LICENSE). + +## Copyright + +Copyright OpenSearch Contributors. See [NOTICE](https://github.com/opensearch-project/neural-search/blob/main/NOTICE) for details. diff --git a/opensearch-project/opensearch-neural-sparse-encoding-doc-v3-gte/idf.json b/opensearch-project/opensearch-neural-sparse-encoding-doc-v3-gte/idf.json new file mode 100644 index 0000000..43a6696 --- /dev/null +++ b/opensearch-project/opensearch-neural-sparse-encoding-doc-v3-gte/idf.json @@ -0,0 +1 @@ +{"[PAD]": 1.0, "[unused0]": 1.0, "[unused1]": 1.0, "[unused2]": 1.0, "[unused3]": 1.0, "[unused4]": 1.0, "[unused5]": 1.0, "[unused6]": 1.0, "[unused7]": 1.0, "[unused8]": 1.0, "[unused9]": 1.0, "[unused10]": 1.0, "[unused11]": 1.0, "[unused12]": 1.0, "[unused13]": 1.0, "[unused14]": 1.0, "[unused15]": 1.0, "[unused16]": 1.0, "[unused17]": 1.0, "[unused18]": 1.0, "[unused19]": 1.0, "[unused20]": 1.0, "[unused21]": 1.0, "[unused22]": 1.0, "[unused23]": 1.0, "[unused24]": 1.0, "[unused25]": 1.0, "[unused26]": 1.0, "[unused27]": 1.0, "[unused28]": 1.0, "[unused29]": 1.0, "[unused30]": 1.0, "[unused31]": 1.0, "[unused32]": 1.0, "[unused33]": 1.0, "[unused34]": 1.0, "[unused35]": 1.0, "[unused36]": 1.0, "[unused37]": 1.0, "[unused38]": 1.0, "[unused39]": 1.0, "[unused40]": 1.0, "[unused41]": 1.0, "[unused42]": 1.0, "[unused43]": 1.0, "[unused44]": 1.0, "[unused45]": 1.0, "[unused46]": 1.0, "[unused47]": 1.0, "[unused48]": 1.0, "[unused49]": 1.0, "[unused50]": 1.0, "[unused51]": 1.0, "[unused52]": 1.0, "[unused53]": 1.0, "[unused54]": 1.0, "[unused55]": 1.0, "[unused56]": 1.0, "[unused57]": 1.0, "[unused58]": 1.0, "[unused59]": 1.0, "[unused60]": 1.0, "[unused61]": 1.0, "[unused62]": 1.0, "[unused63]": 1.0, "[unused64]": 1.0, "[unused65]": 1.0, "[unused66]": 1.0, "[unused67]": 1.0, "[unused68]": 1.0, "[unused69]": 1.0, "[unused70]": 1.0, "[unused71]": 1.0, "[unused72]": 1.0, "[unused73]": 1.0, "[unused74]": 1.0, "[unused75]": 1.0, "[unused76]": 1.0, "[unused77]": 1.0, "[unused78]": 1.0, "[unused79]": 1.0, "[unused80]": 1.0, "[unused81]": 1.0, "[unused82]": 1.0, "[unused83]": 1.0, "[unused84]": 1.0, "[unused85]": 1.0, "[unused86]": 1.0, "[unused87]": 1.0, "[unused88]": 1.0, "[unused89]": 1.0, "[unused90]": 1.0, "[unused91]": 1.0, "[unused92]": 1.0, "[unused93]": 1.0, "[unused94]": 1.0, "[unused95]": 1.0, "[unused96]": 1.0, "[unused97]": 1.0, "[unused98]": 1.0, "[UNK]": 1.0, "[CLS]": 1.0, "[SEP]": 1.0, "[MASK]": 1.0, "[unused99]": 1.0, "[unused100]": 1.0, "[unused101]": 1.0, "[unused102]": 1.0, "[unused103]": 1.0, "[unused104]": 1.0, "[unused105]": 1.0, "[unused106]": 1.0, "[unused107]": 1.0, "[unused108]": 1.0, "[unused109]": 1.0, "[unused110]": 1.0, "[unused111]": 1.0, "[unused112]": 1.0, "[unused113]": 1.0, "[unused114]": 1.0, "[unused115]": 1.0, "[unused116]": 1.0, "[unused117]": 1.0, "[unused118]": 1.0, "[unused119]": 1.0, "[unused120]": 1.0, "[unused121]": 1.0, "[unused122]": 1.0, "[unused123]": 1.0, "[unused124]": 1.0, "[unused125]": 1.0, "[unused126]": 1.0, "[unused127]": 1.0, "[unused128]": 1.0, "[unused129]": 1.0, "[unused130]": 1.0, "[unused131]": 1.0, "[unused132]": 1.0, "[unused133]": 1.0, "[unused134]": 1.0, "[unused135]": 1.0, "[unused136]": 1.0, "[unused137]": 1.0, "[unused138]": 1.0, "[unused139]": 1.0, "[unused140]": 1.0, "[unused141]": 1.0, "[unused142]": 1.0, "[unused143]": 1.0, "[unused144]": 1.0, "[unused145]": 1.0, "[unused146]": 1.0, "[unused147]": 1.0, "[unused148]": 1.0, "[unused149]": 1.0, "[unused150]": 1.0, "[unused151]": 1.0, "[unused152]": 1.0, "[unused153]": 1.0, "[unused154]": 1.0, "[unused155]": 1.0, "[unused156]": 1.0, "[unused157]": 1.0, "[unused158]": 1.0, "[unused159]": 1.0, "[unused160]": 1.0, "[unused161]": 1.0, "[unused162]": 1.0, "[unused163]": 1.0, "[unused164]": 1.0, "[unused165]": 1.0, "[unused166]": 1.0, "[unused167]": 1.0, "[unused168]": 1.0, "[unused169]": 1.0, "[unused170]": 1.0, "[unused171]": 1.0, "[unused172]": 1.0, "[unused173]": 1.0, "[unused174]": 1.0, "[unused175]": 1.0, "[unused176]": 1.0, "[unused177]": 1.0, "[unused178]": 1.0, "[unused179]": 1.0, "[unused180]": 1.0, "[unused181]": 1.0, "[unused182]": 1.0, "[unused183]": 1.0, "[unused184]": 1.0, "[unused185]": 1.0, "[unused186]": 1.0, "[unused187]": 1.0, "[unused188]": 1.0, "[unused189]": 1.0, "[unused190]": 1.0, "[unused191]": 1.0, "[unused192]": 1.0, "[unused193]": 1.0, "[unused194]": 1.0, "[unused195]": 1.0, "[unused196]": 1.0, "[unused197]": 1.0, "[unused198]": 1.0, "[unused199]": 1.0, "[unused200]": 1.0, "[unused201]": 1.0, "[unused202]": 1.0, "[unused203]": 1.0, "[unused204]": 1.0, "[unused205]": 1.0, "[unused206]": 1.0, "[unused207]": 1.0, "[unused208]": 1.0, "[unused209]": 1.0, "[unused210]": 1.0, "[unused211]": 1.0, "[unused212]": 1.0, "[unused213]": 1.0, "[unused214]": 1.0, "[unused215]": 1.0, "[unused216]": 1.0, "[unused217]": 1.0, "[unused218]": 1.0, "[unused219]": 1.0, "[unused220]": 1.0, "[unused221]": 1.0, "[unused222]": 1.0, "[unused223]": 1.0, "[unused224]": 1.0, "[unused225]": 1.0, "[unused226]": 1.0, "[unused227]": 1.0, "[unused228]": 1.0, "[unused229]": 1.0, "[unused230]": 1.0, "[unused231]": 1.0, "[unused232]": 1.0, "[unused233]": 1.0, "[unused234]": 1.0, "[unused235]": 1.0, "[unused236]": 1.0, "[unused237]": 1.0, "[unused238]": 1.0, "[unused239]": 1.0, "[unused240]": 1.0, "[unused241]": 1.0, "[unused242]": 1.0, "[unused243]": 1.0, "[unused244]": 1.0, "[unused245]": 1.0, "[unused246]": 1.0, "[unused247]": 1.0, "[unused248]": 1.0, "[unused249]": 1.0, "[unused250]": 1.0, "[unused251]": 1.0, "[unused252]": 1.0, "[unused253]": 1.0, "[unused254]": 1.0, "[unused255]": 1.0, "[unused256]": 1.0, "[unused257]": 1.0, "[unused258]": 1.0, "[unused259]": 1.0, "[unused260]": 1.0, "[unused261]": 1.0, "[unused262]": 1.0, "[unused263]": 1.0, "[unused264]": 1.0, "[unused265]": 1.0, "[unused266]": 1.0, "[unused267]": 1.0, "[unused268]": 1.0, "[unused269]": 1.0, "[unused270]": 1.0, "[unused271]": 1.0, "[unused272]": 1.0, "[unused273]": 1.0, "[unused274]": 1.0, "[unused275]": 1.0, "[unused276]": 1.0, "[unused277]": 1.0, "[unused278]": 1.0, "[unused279]": 1.0, "[unused280]": 1.0, "[unused281]": 1.0, "[unused282]": 1.0, "[unused283]": 1.0, "[unused284]": 1.0, "[unused285]": 1.0, "[unused286]": 1.0, "[unused287]": 1.0, "[unused288]": 1.0, "[unused289]": 1.0, "[unused290]": 1.0, "[unused291]": 1.0, "[unused292]": 1.0, "[unused293]": 1.0, "[unused294]": 1.0, "[unused295]": 1.0, "[unused296]": 1.0, "[unused297]": 1.0, "[unused298]": 1.0, "[unused299]": 1.0, "[unused300]": 1.0, "[unused301]": 1.0, "[unused302]": 1.0, "[unused303]": 1.0, "[unused304]": 1.0, "[unused305]": 1.0, "[unused306]": 1.0, "[unused307]": 1.0, "[unused308]": 1.0, "[unused309]": 1.0, "[unused310]": 1.0, "[unused311]": 1.0, "[unused312]": 1.0, "[unused313]": 1.0, "[unused314]": 1.0, "[unused315]": 1.0, "[unused316]": 1.0, "[unused317]": 1.0, "[unused318]": 1.0, "[unused319]": 1.0, "[unused320]": 1.0, "[unused321]": 1.0, "[unused322]": 1.0, "[unused323]": 1.0, "[unused324]": 1.0, "[unused325]": 1.0, "[unused326]": 1.0, "[unused327]": 1.0, "[unused328]": 1.0, "[unused329]": 1.0, "[unused330]": 1.0, "[unused331]": 1.0, "[unused332]": 1.0, "[unused333]": 1.0, "[unused334]": 1.0, "[unused335]": 1.0, "[unused336]": 1.0, "[unused337]": 1.0, "[unused338]": 1.0, "[unused339]": 1.0, "[unused340]": 1.0, "[unused341]": 1.0, "[unused342]": 1.0, "[unused343]": 1.0, "[unused344]": 1.0, "[unused345]": 1.0, "[unused346]": 1.0, "[unused347]": 1.0, "[unused348]": 1.0, "[unused349]": 1.0, "[unused350]": 1.0, "[unused351]": 1.0, "[unused352]": 1.0, "[unused353]": 1.0, "[unused354]": 1.0, "[unused355]": 1.0, "[unused356]": 1.0, "[unused357]": 1.0, "[unused358]": 1.0, "[unused359]": 1.0, "[unused360]": 1.0, "[unused361]": 1.0, "[unused362]": 1.0, "[unused363]": 1.0, "[unused364]": 1.0, "[unused365]": 1.0, "[unused366]": 1.0, "[unused367]": 1.0, "[unused368]": 1.0, "[unused369]": 1.0, "[unused370]": 1.0, "[unused371]": 1.0, "[unused372]": 1.0, "[unused373]": 1.0, "[unused374]": 1.0, "[unused375]": 1.0, "[unused376]": 1.0, "[unused377]": 1.0, "[unused378]": 1.0, "[unused379]": 1.0, "[unused380]": 1.0, "[unused381]": 1.0, "[unused382]": 1.0, "[unused383]": 1.0, "[unused384]": 1.0, "[unused385]": 1.0, "[unused386]": 1.0, "[unused387]": 1.0, "[unused388]": 1.0, "[unused389]": 1.0, "[unused390]": 1.0, "[unused391]": 1.0, "[unused392]": 1.0, "[unused393]": 1.0, "[unused394]": 1.0, "[unused395]": 1.0, "[unused396]": 1.0, "[unused397]": 1.0, "[unused398]": 1.0, "[unused399]": 1.0, "[unused400]": 1.0, "[unused401]": 1.0, "[unused402]": 1.0, "[unused403]": 1.0, "[unused404]": 1.0, "[unused405]": 1.0, "[unused406]": 1.0, "[unused407]": 1.0, "[unused408]": 1.0, "[unused409]": 1.0, "[unused410]": 1.0, "[unused411]": 1.0, "[unused412]": 1.0, "[unused413]": 1.0, "[unused414]": 1.0, "[unused415]": 1.0, "[unused416]": 1.0, "[unused417]": 1.0, "[unused418]": 1.0, "[unused419]": 1.0, "[unused420]": 1.0, "[unused421]": 1.0, "[unused422]": 1.0, "[unused423]": 1.0, "[unused424]": 1.0, "[unused425]": 1.0, "[unused426]": 1.0, "[unused427]": 1.0, "[unused428]": 1.0, "[unused429]": 1.0, "[unused430]": 1.0, "[unused431]": 1.0, "[unused432]": 1.0, "[unused433]": 1.0, "[unused434]": 1.0, "[unused435]": 1.0, "[unused436]": 1.0, "[unused437]": 1.0, "[unused438]": 1.0, "[unused439]": 1.0, "[unused440]": 1.0, "[unused441]": 1.0, "[unused442]": 1.0, "[unused443]": 1.0, "[unused444]": 1.0, "[unused445]": 1.0, "[unused446]": 1.0, "[unused447]": 1.0, "[unused448]": 1.0, "[unused449]": 1.0, "[unused450]": 1.0, "[unused451]": 1.0, "[unused452]": 1.0, "[unused453]": 1.0, "[unused454]": 1.0, "[unused455]": 1.0, "[unused456]": 1.0, "[unused457]": 1.0, "[unused458]": 1.0, "[unused459]": 1.0, "[unused460]": 1.0, "[unused461]": 1.0, "[unused462]": 1.0, "[unused463]": 1.0, "[unused464]": 1.0, "[unused465]": 1.0, "[unused466]": 1.0, "[unused467]": 1.0, "[unused468]": 1.0, "[unused469]": 1.0, "[unused470]": 1.0, "[unused471]": 1.0, "[unused472]": 1.0, "[unused473]": 1.0, "[unused474]": 1.0, "[unused475]": 1.0, "[unused476]": 1.0, "[unused477]": 1.0, "[unused478]": 1.0, "[unused479]": 1.0, "[unused480]": 1.0, "[unused481]": 1.0, "[unused482]": 1.0, "[unused483]": 1.0, "[unused484]": 1.0, "[unused485]": 1.0, "[unused486]": 1.0, "[unused487]": 1.0, "[unused488]": 1.0, "[unused489]": 1.0, "[unused490]": 1.0, "[unused491]": 1.0, "[unused492]": 1.0, "[unused493]": 1.0, "[unused494]": 1.0, "[unused495]": 1.0, "[unused496]": 1.0, "[unused497]": 1.0, "[unused498]": 1.0, "[unused499]": 1.0, "[unused500]": 1.0, "[unused501]": 1.0, "[unused502]": 1.0, "[unused503]": 1.0, "[unused504]": 1.0, "[unused505]": 1.0, "[unused506]": 1.0, "[unused507]": 1.0, "[unused508]": 1.0, "[unused509]": 1.0, "[unused510]": 1.0, "[unused511]": 1.0, "[unused512]": 1.0, "[unused513]": 1.0, "[unused514]": 1.0, "[unused515]": 1.0, "[unused516]": 1.0, "[unused517]": 1.0, "[unused518]": 1.0, "[unused519]": 1.0, "[unused520]": 1.0, "[unused521]": 1.0, "[unused522]": 1.0, "[unused523]": 1.0, "[unused524]": 1.0, "[unused525]": 1.0, "[unused526]": 1.0, "[unused527]": 1.0, "[unused528]": 1.0, "[unused529]": 1.0, "[unused530]": 1.0, "[unused531]": 1.0, "[unused532]": 1.0, "[unused533]": 1.0, "[unused534]": 1.0, "[unused535]": 1.0, "[unused536]": 1.0, "[unused537]": 1.0, "[unused538]": 1.0, "[unused539]": 1.0, "[unused540]": 1.0, "[unused541]": 1.0, "[unused542]": 1.0, "[unused543]": 1.0, "[unused544]": 1.0, "[unused545]": 1.0, "[unused546]": 1.0, "[unused547]": 1.0, "[unused548]": 1.0, "[unused549]": 1.0, "[unused550]": 1.0, "[unused551]": 1.0, "[unused552]": 1.0, "[unused553]": 1.0, "[unused554]": 1.0, "[unused555]": 1.0, "[unused556]": 1.0, "[unused557]": 1.0, "[unused558]": 1.0, "[unused559]": 1.0, "[unused560]": 1.0, "[unused561]": 1.0, "[unused562]": 1.0, "[unused563]": 1.0, "[unused564]": 1.0, "[unused565]": 1.0, "[unused566]": 1.0, "[unused567]": 1.0, "[unused568]": 1.0, "[unused569]": 1.0, "[unused570]": 1.0, "[unused571]": 1.0, "[unused572]": 1.0, "[unused573]": 1.0, "[unused574]": 1.0, "[unused575]": 1.0, "[unused576]": 1.0, "[unused577]": 1.0, "[unused578]": 1.0, "[unused579]": 1.0, "[unused580]": 1.0, "[unused581]": 1.0, "[unused582]": 1.0, "[unused583]": 1.0, "[unused584]": 1.0, "[unused585]": 1.0, "[unused586]": 1.0, "[unused587]": 1.0, "[unused588]": 1.0, "[unused589]": 1.0, "[unused590]": 1.0, "[unused591]": 1.0, "[unused592]": 1.0, "[unused593]": 1.0, "[unused594]": 1.0, "[unused595]": 1.0, "[unused596]": 1.0, "[unused597]": 1.0, "[unused598]": 1.0, "[unused599]": 1.0, "[unused600]": 1.0, "[unused601]": 1.0, "[unused602]": 1.0, "[unused603]": 1.0, "[unused604]": 1.0, "[unused605]": 1.0, "[unused606]": 1.0, "[unused607]": 1.0, "[unused608]": 1.0, "[unused609]": 1.0, "[unused610]": 1.0, "[unused611]": 1.0, "[unused612]": 1.0, "[unused613]": 1.0, "[unused614]": 1.0, "[unused615]": 1.0, "[unused616]": 1.0, "[unused617]": 1.0, "[unused618]": 1.0, "[unused619]": 1.0, "[unused620]": 1.0, "[unused621]": 1.0, "[unused622]": 1.0, "[unused623]": 1.0, "[unused624]": 1.0, "[unused625]": 1.0, "[unused626]": 1.0, "[unused627]": 1.0, "[unused628]": 1.0, "[unused629]": 1.0, "[unused630]": 1.0, "[unused631]": 1.0, "[unused632]": 1.0, "[unused633]": 1.0, "[unused634]": 1.0, "[unused635]": 1.0, "[unused636]": 1.0, "[unused637]": 1.0, "[unused638]": 1.0, "[unused639]": 1.0, "[unused640]": 1.0, "[unused641]": 1.0, "[unused642]": 1.0, "[unused643]": 1.0, "[unused644]": 1.0, "[unused645]": 1.0, "[unused646]": 1.0, "[unused647]": 1.0, "[unused648]": 1.0, "[unused649]": 1.0, "[unused650]": 1.0, "[unused651]": 1.0, "[unused652]": 1.0, "[unused653]": 1.0, "[unused654]": 1.0, "[unused655]": 1.0, "[unused656]": 1.0, "[unused657]": 1.0, "[unused658]": 1.0, "[unused659]": 1.0, "[unused660]": 1.0, "[unused661]": 1.0, "[unused662]": 1.0, "[unused663]": 1.0, "[unused664]": 1.0, "[unused665]": 1.0, "[unused666]": 1.0, "[unused667]": 1.0, "[unused668]": 1.0, "[unused669]": 1.0, "[unused670]": 1.0, "[unused671]": 1.0, "[unused672]": 1.0, "[unused673]": 1.0, "[unused674]": 1.0, "[unused675]": 1.0, "[unused676]": 1.0, "[unused677]": 1.0, "[unused678]": 1.0, "[unused679]": 1.0, "[unused680]": 1.0, "[unused681]": 1.0, "[unused682]": 1.0, "[unused683]": 1.0, "[unused684]": 1.0, "[unused685]": 1.0, "[unused686]": 1.0, "[unused687]": 1.0, "[unused688]": 1.0, "[unused689]": 1.0, "[unused690]": 1.0, "[unused691]": 1.0, "[unused692]": 1.0, "[unused693]": 1.0, "[unused694]": 1.0, "[unused695]": 1.0, "[unused696]": 1.0, "[unused697]": 1.0, "[unused698]": 1.0, "[unused699]": 1.0, "[unused700]": 1.0, "[unused701]": 1.0, "[unused702]": 1.0, "[unused703]": 1.0, "[unused704]": 1.0, "[unused705]": 1.0, "[unused706]": 1.0, "[unused707]": 1.0, "[unused708]": 1.0, "[unused709]": 1.0, "[unused710]": 1.0, "[unused711]": 1.0, "[unused712]": 1.0, "[unused713]": 1.0, "[unused714]": 1.0, "[unused715]": 1.0, "[unused716]": 1.0, "[unused717]": 1.0, "[unused718]": 1.0, "[unused719]": 1.0, "[unused720]": 1.0, "[unused721]": 1.0, "[unused722]": 1.0, "[unused723]": 1.0, "[unused724]": 1.0, "[unused725]": 1.0, "[unused726]": 1.0, "[unused727]": 1.0, "[unused728]": 1.0, "[unused729]": 1.0, "[unused730]": 1.0, "[unused731]": 1.0, "[unused732]": 1.0, "[unused733]": 1.0, "[unused734]": 1.0, "[unused735]": 1.0, "[unused736]": 1.0, "[unused737]": 1.0, "[unused738]": 1.0, "[unused739]": 1.0, "[unused740]": 1.0, "[unused741]": 1.0, "[unused742]": 1.0, "[unused743]": 1.0, "[unused744]": 1.0, "[unused745]": 1.0, "[unused746]": 1.0, "[unused747]": 1.0, "[unused748]": 1.0, "[unused749]": 1.0, "[unused750]": 1.0, "[unused751]": 1.0, "[unused752]": 1.0, "[unused753]": 1.0, "[unused754]": 1.0, "[unused755]": 1.0, "[unused756]": 1.0, "[unused757]": 1.0, "[unused758]": 1.0, "[unused759]": 1.0, "[unused760]": 1.0, "[unused761]": 1.0, "[unused762]": 1.0, "[unused763]": 1.0, "[unused764]": 1.0, "[unused765]": 1.0, "[unused766]": 1.0, "[unused767]": 1.0, "[unused768]": 1.0, "[unused769]": 1.0, "[unused770]": 1.0, "[unused771]": 1.0, "[unused772]": 1.0, "[unused773]": 1.0, "[unused774]": 1.0, "[unused775]": 1.0, "[unused776]": 1.0, "[unused777]": 1.0, "[unused778]": 1.0, "[unused779]": 1.0, "[unused780]": 1.0, "[unused781]": 1.0, "[unused782]": 1.0, "[unused783]": 1.0, "[unused784]": 1.0, "[unused785]": 1.0, "[unused786]": 1.0, "[unused787]": 1.0, "[unused788]": 1.0, "[unused789]": 1.0, "[unused790]": 1.0, "[unused791]": 1.0, "[unused792]": 1.0, "[unused793]": 1.0, "[unused794]": 1.0, "[unused795]": 1.0, "[unused796]": 1.0, "[unused797]": 1.0, "[unused798]": 1.0, "[unused799]": 1.0, "[unused800]": 1.0, "[unused801]": 1.0, "[unused802]": 1.0, "[unused803]": 1.0, "[unused804]": 1.0, "[unused805]": 1.0, "[unused806]": 1.0, "[unused807]": 1.0, "[unused808]": 1.0, "[unused809]": 1.0, "[unused810]": 1.0, "[unused811]": 1.0, "[unused812]": 1.0, "[unused813]": 1.0, "[unused814]": 1.0, "[unused815]": 1.0, "[unused816]": 1.0, "[unused817]": 1.0, "[unused818]": 1.0, "[unused819]": 1.0, "[unused820]": 1.0, "[unused821]": 1.0, "[unused822]": 1.0, "[unused823]": 1.0, "[unused824]": 1.0, "[unused825]": 1.0, "[unused826]": 1.0, "[unused827]": 1.0, "[unused828]": 1.0, "[unused829]": 1.0, "[unused830]": 1.0, "[unused831]": 1.0, "[unused832]": 1.0, "[unused833]": 1.0, "[unused834]": 1.0, "[unused835]": 1.0, "[unused836]": 1.0, "[unused837]": 1.0, "[unused838]": 1.0, "[unused839]": 1.0, "[unused840]": 1.0, "[unused841]": 1.0, "[unused842]": 1.0, "[unused843]": 1.0, "[unused844]": 1.0, "[unused845]": 1.0, "[unused846]": 1.0, "[unused847]": 1.0, "[unused848]": 1.0, "[unused849]": 1.0, "[unused850]": 1.0, "[unused851]": 1.0, "[unused852]": 1.0, "[unused853]": 1.0, "[unused854]": 1.0, "[unused855]": 1.0, "[unused856]": 1.0, "[unused857]": 1.0, "[unused858]": 1.0, "[unused859]": 1.0, "[unused860]": 1.0, "[unused861]": 1.0, "[unused862]": 1.0, "[unused863]": 1.0, "[unused864]": 1.0, "[unused865]": 1.0, "[unused866]": 1.0, "[unused867]": 1.0, "[unused868]": 1.0, "[unused869]": 1.0, "[unused870]": 1.0, "[unused871]": 1.0, "[unused872]": 1.0, "[unused873]": 1.0, "[unused874]": 1.0, "[unused875]": 1.0, "[unused876]": 1.0, "[unused877]": 1.0, "[unused878]": 1.0, "[unused879]": 1.0, "[unused880]": 1.0, "[unused881]": 1.0, "[unused882]": 1.0, "[unused883]": 1.0, "[unused884]": 1.0, "[unused885]": 1.0, "[unused886]": 1.0, "[unused887]": 1.0, "[unused888]": 1.0, "[unused889]": 1.0, "[unused890]": 1.0, "[unused891]": 1.0, "[unused892]": 1.0, "[unused893]": 1.0, "[unused894]": 1.0, "[unused895]": 1.0, "[unused896]": 1.0, "[unused897]": 1.0, "[unused898]": 1.0, "[unused899]": 1.0, "[unused900]": 1.0, "[unused901]": 1.0, "[unused902]": 1.0, "[unused903]": 1.0, "[unused904]": 1.0, "[unused905]": 1.0, "[unused906]": 1.0, "[unused907]": 1.0, "[unused908]": 1.0, "[unused909]": 1.0, "[unused910]": 1.0, "[unused911]": 1.0, "[unused912]": 1.0, "[unused913]": 1.0, "[unused914]": 1.0, "[unused915]": 1.0, "[unused916]": 1.0, "[unused917]": 1.0, "[unused918]": 1.0, "[unused919]": 1.0, "[unused920]": 1.0, "[unused921]": 1.0, "[unused922]": 1.0, "[unused923]": 1.0, "[unused924]": 1.0, "[unused925]": 1.0, "[unused926]": 1.0, "[unused927]": 1.0, "[unused928]": 1.0, "[unused929]": 1.0, "[unused930]": 1.0, "[unused931]": 1.0, "[unused932]": 1.0, "[unused933]": 1.0, "[unused934]": 1.0, "[unused935]": 1.0, "[unused936]": 1.0, "[unused937]": 1.0, "[unused938]": 1.0, "[unused939]": 1.0, "[unused940]": 1.0, "[unused941]": 1.0, "[unused942]": 1.0, "[unused943]": 1.0, "[unused944]": 1.0, "[unused945]": 1.0, "[unused946]": 1.0, "[unused947]": 1.0, "[unused948]": 1.0, "[unused949]": 1.0, "[unused950]": 1.0, "[unused951]": 1.0, "[unused952]": 1.0, "[unused953]": 1.0, "[unused954]": 1.0, "[unused955]": 1.0, "[unused956]": 1.0, "[unused957]": 1.0, "[unused958]": 1.0, "[unused959]": 1.0, "[unused960]": 1.0, "[unused961]": 1.0, "[unused962]": 1.0, "[unused963]": 1.0, "[unused964]": 1.0, "[unused965]": 1.0, "[unused966]": 1.0, "[unused967]": 1.0, "[unused968]": 1.0, "[unused969]": 1.0, "[unused970]": 1.0, "[unused971]": 1.0, "[unused972]": 1.0, "[unused973]": 1.0, "[unused974]": 1.0, "[unused975]": 1.0, "[unused976]": 1.0, "[unused977]": 1.0, "[unused978]": 1.0, "[unused979]": 1.0, "[unused980]": 1.0, "[unused981]": 1.0, "[unused982]": 1.0, "[unused983]": 1.0, "[unused984]": 1.0, "[unused985]": 1.0, "[unused986]": 1.0, "[unused987]": 1.0, "[unused988]": 1.0, "[unused989]": 1.0, "[unused990]": 1.0, "[unused991]": 1.0, "[unused992]": 1.0, "[unused993]": 1.0, "!": 3.4237170219421387, "\"": 1.0, "#": 4.794524192810059, "$": 2.8950607776641846, "%": 3.345789909362793, "&": 3.554023027420044, "'": 1.5750715732574463, "(": 1.2506691217422485, ")": 1.244235634803772, "*": 4.769700527191162, "+": 4.3600687980651855, ",": 0.1764274388551712, "-": 1.0519026517868042, ".": 0.016054173931479454, "/": 2.4853343963623047, "0": 3.786980628967285, "1": 1.6556861400604248, "2": 1.8533544540405273, "3": 2.168673515319824, "4": 2.594691276550293, "5": 2.7129011154174805, "6": 3.147073268890381, "7": 3.385776996612549, "8": 3.3964550495147705, "9": 3.7895288467407227, ":": 1.51224684715271, ";": 2.83634614944458, "<": 6.2054972648620605, "=": 4.538251876831055, ">": 5.419426918029785, "?": 3.331254720687866, "@": 5.599002361297607, "[": 4.134648323059082, "\\": 6.414445877075195, "]": 4.13856315612793, "^": 7.105350971221924, "_": 5.189010143280029, "`": 7.228999137878418, "a": 0.4022789001464844, "b": 3.7727110385894775, "c": 3.9957001209259033, "d": 3.785648822784424, "e": 3.4688076972961426, "f": 4.004574775695801, "g": 3.882420539855957, "h": 4.1741414070129395, "i": 2.5530593395233154, "j": 5.264067649841309, "k": 4.622392654418945, "l": 4.295719146728516, "m": 3.9502477645874023, "n": 3.9334802627563477, "o": 3.8847897052764893, "p": 4.317772388458252, "q": 5.43118953704834, "r": 4.5427045822143555, "s": 1.4272583723068237, "t": 2.638263463973999, "u": 3.689681053161621, "v": 4.91011905670166, "w": 4.497410297393799, "x": 4.303861141204834, "y": 5.021723747253418, "z": 5.2274980545043945, "{": 6.7039594650268555, "|": 4.874032497406006, "}": 6.791234970092773, "~": 6.589302062988281, "\u00a1": 9.948814392089844, "\u00a2": 10.886032104492188, "\u00a3": 7.03408670425415, "\u00a4": 11.996803283691406, "\u00a5": 10.093737602233887, "\u00a6": 11.711417198181152, "\u00a7": 7.110462665557861, "\u00a8": 11.394845962524414, "\u00a9": 6.1121015548706055, "\u00aa": 13.024589538574219, "\u00ab": 8.349367141723633, "\u00ac": 11.263200759887695, "\u00ae": 6.789022922515869, "\u00b0": 9.095785140991211, "\u00b1": 8.66755199432373, "\u00b2": 10.282922744750977, "\u00b3": 11.394845962524414, "\u00b4": 11.12363052368164, "\u00b5": 8.468016624450684, "\u00b6": 9.494464874267578, "\u00b7": 5.371495723724365, "\u00b9": 10.52905559539795, "\u00ba": 9.797541618347168, "\u00bb": 5.923568248748779, "\u00bc": 8.216164588928223, "\u00bd": 7.212757587432861, "\u00be": 8.80923843383789, "\u00bf": 10.007296562194824, "\u00d7": 7.49180793762207, "\u00df": 10.856268882751465, "\u00e6": 9.092763900756836, "\u00f0": 10.413389205932617, "\u00f7": 8.703688621520996, "\u00f8": 10.014852523803711, "\u00fe": 10.709264755249023, "\u0111": 10.89819049835205, "\u0127": 12.199514389038086, "\u0131": 12.483458518981934, "\u0142": 11.47866439819336, "\u014b": 11.89236068725586, "\u0153": 10.788253784179688, "\u0192": 11.326858520507812, "\u0250": 12.113439559936523, "\u0251": 10.096477508544922, "\u0252": 10.4058837890625, "\u0254": 10.34779167175293, "\u0255": 12.645099639892578, "\u0259": 7.413053512573242, "\u025b": 9.828536033630371, "\u0261": 9.64673900604248, "\u0263": 12.717859268188477, "\u0268": 11.619246482849121, "\u026a": 8.756147384643555, "\u026b": 13.854937553405762, "\u026c": 14.742240905761719, "\u026f": 14.490926742553711, "\u0272": 13.552656173706055, "\u0274": 1.0, "\u0279": 12.545016288757324, "\u027e": 12.838003158569336, "\u0280": 14.742240905761719, "\u0281": 11.245733261108398, "\u0282": 13.980100631713867, "\u0283": 9.636295318603516, "\u0289": 1.0, "\u028a": 11.739391326904297, "\u028b": 13.643628120422363, "\u028c": 11.228565216064453, "\u028e": 13.191643714904785, "\u0290": 14.742240905761719, "\u0291": 1.0, "\u0292": 10.669557571411133, "\u0294": 11.619246482849121, "\u02b0": 14.742240905761719, "\u02b2": 15.58953857421875, "\u02b3": 15.58953857421875, "\u02b7": 15.58953857421875, "\u02b8": 1.0, "\u02bb": 10.451781272888184, "\u02bc": 12.838003158569336, "\u02be": 12.073030471801758, "\u02bf": 11.115997314453125, "\u02c8": 6.27121114730835, "\u02d0": 12.796330451965332, "\u02e1": 14.290255546569824, "\u02e2": 1.0, "\u02e3": 14.742240905761719, "\u02e4": 13.743711471557617, "\u03b1": 7.789921760559082, "\u03b2": 8.307694435119629, "\u03b3": 8.968132972717285, "\u03b4": 8.600817680358887, "\u03b5": 9.017255783081055, "\u03b6": 11.100902557373047, "\u03b7": 10.289556503295898, "\u03b8": 9.240982055664062, "\u03b9": 10.01738452911377, "\u03ba": 8.979740142822266, "\u03bb": 8.943581581115723, "\u03bc": 8.240307807922363, "\u03bd": 9.836966514587402, "\u03be": 11.670870780944824, "\u03bf": 9.620831489562988, "\u03c0": 8.35656452178955, "\u03c1": 9.847604751586914, "\u03c2": 13.132802963256836, "\u03c3": 8.700286865234375, "\u03c4": 9.481032371520996, "\u03c5": 10.850419998168945, "\u03c6": 9.437515258789062, "\u03c7": 9.999795913696289, "\u03c8": 11.14688777923584, "\u03c9": 9.470707893371582, "\u0430": 10.467560768127441, "\u0431": 10.612804412841797, "\u0432": 10.409629821777344, "\u0433": 10.827364921569824, "\u0434": 10.850419998168945, "\u0435": 11.81295394897461, "\u0436": 12.881488800048828, "\u0437": 11.404947280883789, "\u0438": 10.816033363342285, "\u043a": 10.3407621383667, "\u043b": 11.115997314453125, "\u043c": 10.351325035095215, "\u043d": 10.799272537231445, "\u043e": 10.804828643798828, "\u043f": 10.082853317260742, "\u0440": 10.273054122924805, "\u0441": 10.061432838439941, "\u0442": 10.640778541564941, "\u0443": 11.47866439819336, "\u0444": 11.711417198181152, "\u0445": 11.725306510925293, "\u0446": 11.943219184875488, "\u0447": 11.739391326904297, "\u0448": 12.39769172668457, "\u0449": 13.392313957214355, "\u044a": 13.46927547454834, "\u044b": 15.58953857421875, "\u044c": 13.643628120422363, "\u044d": 12.269309997558594, "\u044e": 12.974578857421875, "\u044f": 11.978620529174805, "\u0452": 14.123201370239258, "\u0454": 13.854937553405762, "\u0456": 13.25416374206543, "\u0458": 13.743711471557617, "\u0459": 15.58953857421875, "\u045a": 1.0, "\u045b": 14.490926742553711, "\u04cf": 1.0, "\u0561": 13.643628120422363, "\u0562": 14.490926742553711, "\u0563": 14.123201370239258, "\u0564": 14.742240905761719, "\u0565": 14.123201370239258, "\u0569": 15.58953857421875, "\u056b": 15.58953857421875, "\u056c": 14.290255546569824, "\u056f": 14.742240905761719, "\u0570": 12.513763427734375, "\u0574": 15.58953857421875, "\u0575": 14.742240905761719, "\u0576": 15.58953857421875, "\u0578": 15.078713417053223, "\u057a": 14.742240905761719, "\u057d": 13.743711471557617, "\u057e": 14.123201370239258, "\u057f": 15.58953857421875, "\u0580": 1.0, "\u0582": 1.0, "\u0584": 15.58953857421875, "\u05be": 12.756325721740723, "\u05d0": 10.138500213623047, "\u05d1": 10.95481014251709, "\u05d2": 11.500764846801758, "\u05d3": 11.582205772399902, "\u05d4": 10.599105834960938, "\u05d5": 11.81295394897461, "\u05d6": 12.199514389038086, "\u05d7": 10.87402057647705, "\u05d8": 12.344346046447754, "\u05d9": 10.222005844116211, "\u05da": 13.980100631713867, "\u05db": 11.534859657287598, "\u05dc": 11.355432510375977, "\u05dd": 14.742240905761719, "\u05de": 10.387365341186523, "\u05df": 14.742240905761719, "\u05e0": 11.365140914916992, "\u05e1": 11.87596607208252, "\u05e2": 10.83307933807373, "\u05e3": 15.078713417053223, "\u05e4": 11.768170356750488, "\u05e5": 15.58953857421875, "\u05e6": 12.073030471801758, "\u05e7": 12.034191131591797, "\u05e8": 11.435877799987793, "\u05e9": 10.689214706420898, "\u05ea": 11.308253288269043, "\u060c": 12.15555191040039, "\u0621": 15.078713417053223, "\u0627": 8.780131340026855, "\u0628": 10.188364028930664, "\u0629": 14.742240905761719, "\u062a": 10.844606399536133, "\u062b": 13.552656173706055, "\u062c": 10.740116119384766, "\u062d": 10.77194881439209, "\u062e": 10.95481014251709, "\u062f": 10.471545219421387, "\u0630": 12.645099639892578, "\u0631": 10.827364921569824, "\u0632": 11.606746673583984, "\u0633": 10.504002571105957, "\u0634": 11.100902557373047, "\u0635": 11.546487808227539, "\u0636": 12.610613822937012, "\u0637": 11.753677368164062, "\u0638": 13.854937553405762, "\u0639": 10.2313814163208, "\u063a": 12.881488800048828, "\u0640": 14.490926742553711, "\u0641": 10.810415267944336, "\u0642": 11.021724700927734, "\u0643": 11.404947280883789, "\u0644": 10.69419002532959, "\u0645": 9.66617488861084, "\u0646": 10.793747901916504, "\u0647": 11.711417198181152, "\u0648": 10.886032104492188, "\u0649": 15.58953857421875, "\u064a": 11.570157051086426, "\u0679": 13.980100631713867, "\u067e": 11.326858520507812, "\u0686": 12.22224235534668, "\u06a9": 10.916709899902344, "\u06af": 12.053421974182129, "\u06ba": 1.0, "\u06be": 15.58953857421875, "\u06c1": 12.39769172668457, "\u06cc": 12.454044342041016, "\u06d2": 15.078713417053223, "\u0905": 11.021724700927734, "\u0906": 11.725306510925293, "\u0909": 12.425471305847168, "\u090f": 13.25416374206543, "\u0915": 9.987420082092285, "\u0916": 12.344346046447754, "\u0917": 11.87596607208252, "\u091a": 12.199514389038086, "\u091c": 10.981040954589844, "\u091f": 13.392313957214355, "\u0921": 13.392313957214355, "\u0923": 1.0, "\u0924": 11.711417198181152, "\u0925": 14.742240905761719, "\u0926": 11.684205055236816, "\u0927": 12.370662689208984, "\u0928": 11.415151596069336, "\u092a": 10.948357582092285, "\u092c": 11.457042694091797, "\u092d": 11.996803283691406, "\u092e": 9.884645462036133, "\u092f": 12.513763427734375, "\u0930": 11.28097915649414, "\u0932": 12.22224235534668, "\u0935": 11.195089340209961, "\u0936": 11.345816612243652, "\u0937": 15.58953857421875, "\u0938": 10.714341163635254, "\u0939": 10.05878734588623, "\u093e": 15.58953857421875, "\u093f": 15.078713417053223, "\u0940": 15.58953857421875, "\u094b": 15.58953857421875, "\u0964": 12.454044342041016, "\u0965": 14.742240905761719, "\u0982": 1.0, "\u0985": 13.320855140686035, "\u0986": 13.392313957214355, "\u0987": 14.123201370239258, "\u0989": 1.0, "\u098f": 1.0, "\u0993": 14.742240905761719, "\u0995": 13.46927547454834, "\u0996": 15.078713417053223, "\u0997": 13.320855140686035, "\u099a": 13.980100631713867, "\u099b": 1.0, "\u099c": 13.191643714904785, "\u099f": 14.123201370239258, "\u09a1": 14.490926742553711, "\u09a3": 1.0, "\u09a4": 14.490926742553711, "\u09a5": 1.0, "\u09a6": 1.0, "\u09a7": 1.0, "\u09a8": 14.290255546569824, "\u09aa": 13.392313957214355, "\u09ac": 12.756325721740723, "\u09ad": 13.643628120422363, "\u09ae": 12.974578857421875, "\u09af": 15.58953857421875, "\u09b0": 12.796330451965332, "\u09b2": 15.078713417053223, "\u09b6": 13.980100631713867, "\u09b7": 1.0, "\u09b8": 13.392313957214355, "\u09b9": 13.743711471557617, "\u09be": 1.0, "\u09bf": 1.0, "\u09c0": 1.0, "\u09c7": 1.0, "\u0b95": 12.645099639892578, "\u0b9a": 13.191643714904785, "\u0b9f": 1.0, "\u0ba4": 12.796330451965332, "\u0ba8": 14.123201370239258, "\u0ba9": 1.0, "\u0baa": 12.756325721740723, "\u0bae": 12.610613822937012, "\u0baf": 15.078713417053223, "\u0bb0": 13.643628120422363, "\u0bb2": 14.742240905761719, "\u0bb3": 1.0, "\u0bb5": 13.392313957214355, "\u0bbe": 1.0, "\u0bbf": 1.0, "\u0bc1": 1.0, "\u0bc7": 1.0, "\u0bc8": 1.0, "\u0ca8": 1.0, "\u0cb0": 1.0, "\u0cbe": 1.0, "\u0d9a": 1.0, "\u0dba": 1.0, "\u0dbb": 1.0, "\u0dbd": 1.0, "\u0dc0": 15.078713417053223, "\u0dcf": 1.0, "\u0e01": 13.552656173706055, "\u0e07": 14.742240905761719, "\u0e15": 14.290255546569824, "\u0e17": 14.490926742553711, "\u0e19": 15.078713417053223, "\u0e1e": 13.854937553405762, "\u0e21": 13.643628120422363, "\u0e22": 14.742240905761719, "\u0e23": 14.742240905761719, "\u0e25": 15.078713417053223, "\u0e27": 13.46927547454834, "\u0e2a": 14.123201370239258, "\u0e2d": 13.743711471557617, "\u0e32": 15.078713417053223, "\u0e40": 13.46927547454834, "\u0f0b": 12.199514389038086, "\u0f0d": 14.123201370239258, "\u0f42": 14.290255546569824, "\u0f44": 1.0, "\u0f51": 13.743711471557617, "\u0f53": 15.58953857421875, "\u0f54": 13.552656173706055, "\u0f56": 13.743711471557617, "\u0f58": 13.854937553405762, "\u0f60": 14.742240905761719, "\u0f62": 13.25416374206543, "\u0f63": 14.290255546569824, "\u0f66": 13.392313957214355, "\u1019": 1.0, "\u10d0": 14.290255546569824, "\u10d1": 14.490926742553711, "\u10d2": 15.58953857421875, "\u10d3": 1.0, "\u10d4": 15.58953857421875, "\u10d5": 15.58953857421875, "\u10d7": 13.743711471557617, "\u10d8": 15.58953857421875, "\u10d9": 14.742240905761719, "\u10da": 14.742240905761719, "\u10db": 13.980100631713867, "\u10dc": 15.078713417053223, "\u10dd": 1.0, "\u10e0": 15.58953857421875, "\u10e1": 14.490926742553711, "\u10e2": 1.0, "\u10e3": 15.58953857421875, "\u1100": 10.87402057647705, "\u1102": 12.034191131591797, "\u1103": 11.782876014709473, "\u1105": 12.370662689208984, "\u1106": 11.415151596069336, "\u1107": 11.086031913757324, "\u1109": 11.035661697387695, "\u110a": 13.980100631713867, "\u110b": 10.78278923034668, "\u110c": 11.021724700927734, "\u110e": 12.454044342041016, "\u110f": 12.645099639892578, "\u1110": 12.717859268188477, "\u1111": 12.318702697753906, "\u1112": 10.491706848144531, "\u1161": 1.0, "\u1162": 1.0, "\u1165": 1.0, "\u1166": 1.0, "\u1167": 1.0, "\u1169": 1.0, "\u116a": 1.0, "\u116d": 1.0, "\u116e": 1.0, "\u116f": 1.0, "\u1172": 1.0, "\u1173": 1.0, "\u1174": 1.0, "\u1175": 1.0, "\u11a8": 1.0, "\u11ab": 1.0, "\u11af": 1.0, "\u11b7": 1.0, "\u11b8": 1.0, "\u11bc": 1.0, "\u1d2c": 1.0, "\u1d2e": 1.0, "\u1d30": 1.0, "\u1d35": 1.0, "\u1d3a": 1.0, "\u1d40": 1.0, "\u1d43": 1.0, "\u1d47": 1.0, "\u1d48": 1.0, "\u1d49": 1.0, "\u1d4d": 1.0, "\u1d4f": 1.0, "\u1d50": 15.078713417053223, "\u1d52": 15.58953857421875, "\u1d56": 1.0, "\u1d57": 15.58953857421875, "\u1d58": 1.0, "\u1d62": 1.0, "\u1d63": 1.0, "\u1d64": 1.0, "\u1d65": 1.0, "\u1d9c": 1.0, "\u1da0": 1.0, "\u2010": 8.258041381835938, "\u2011": 9.056234359741211, "\u2012": 11.512001037597656, "\u2013": 3.516679286956787, "\u2014": 3.82391357421875, "\u2015": 8.464255332946777, "\u2016": 10.922959327697754, "\u2018": 4.993412494659424, "\u2019": 2.291775941848755, "\u201a": 10.014852523803711, "\u201c": 3.3921585083007812, "\u201d": 3.4040310382843018, "\u201e": 10.135643005371094, "\u2020": 7.678581237792969, "\u2021": 10.082853317260742, "\u2022": 5.209413051605225, "\u2026": 3.8974437713623047, "\u2030": 11.828338623046875, "\u2032": 6.716584205627441, "\u2033": 7.006495475769043, "\u203a": 6.833590984344482, "\u203f": 12.454044342041016, "\u2044": 10.2536039352417, "\u2070": 14.290255546569824, "\u2071": 1.0, "\u2074": 13.552656173706055, "\u2075": 14.742240905761719, "\u2076": 13.980100631713867, "\u2077": 14.290255546569824, "\u2078": 1.0, "\u2079": 15.58953857421875, "\u207a": 15.58953857421875, "\u207b": 1.0, "\u207f": 1.0, "\u2080": 15.078713417053223, "\u2081": 14.123201370239258, "\u2082": 12.545016288757324, "\u2083": 14.123201370239258, "\u2084": 14.290255546569824, "\u2085": 15.078713417053223, "\u2086": 14.123201370239258, "\u2087": 15.58953857421875, "\u2088": 1.0, "\u2089": 1.0, "\u208a": 1.0, "\u208d": 1.0, "\u208e": 1.0, "\u2090": 1.0, "\u2091": 1.0, "\u2092": 1.0, "\u2093": 1.0, "\u2095": 1.0, "\u2096": 1.0, "\u2097": 1.0, "\u2098": 1.0, "\u2099": 1.0, "\u209a": 1.0, "\u209b": 1.0, "\u209c": 1.0, "\u20a4": 12.425471305847168, "\u20a9": 12.293702125549316, "\u20ac": 8.001890182495117, "\u20b1": 11.925976753234863, "\u20b9": 10.524836540222168, "\u2113": 11.558252334594727, "\u2116": 12.513763427734375, "\u211d": 14.123201370239258, "\u2122": 8.813031196594238, "\u2153": 11.042703628540039, "\u2154": 11.425460815429688, "\u2190": 10.037872314453125, "\u2191": 8.639681816101074, "\u2192": 7.414178848266602, "\u2193": 9.65024471282959, "\u2194": 10.475544929504395, "\u21a6": 14.123201370239258, "\u21c4": 12.838003158569336, "\u21cc": 12.39769172668457, "\u21d2": 10.040462493896484, "\u2202": 11.943219184875488, "\u2205": 12.577277183532715, "\u2206": 10.541821479797363, "\u2207": 12.483458518981934, "\u2208": 11.308253288269043, "\u2212": 7.459479808807373, "\u2217": 11.178762435913086, "\u2218": 13.191643714904785, "\u221a": 9.732558250427246, "\u221e": 10.550423622131348, "\u2227": 12.881488800048828, "\u2228": 12.838003158569336, "\u2229": 12.344346046447754, "\u222a": 13.132802963256836, "\u2248": 9.56609058380127, "\u2261": 11.425460815429688, "\u2264": 9.634565353393555, "\u2265": 8.992392539978027, "\u2282": 13.07723331451416, "\u2286": 13.25416374206543, "\u2295": 12.881488800048828, "\u2297": 13.854937553405762, "\u22c5": 11.064133644104004, "\u2500": 10.827364921569824, "\u2502": 12.717859268188477, "\u25a0": 9.263389587402344, "\u25aa": 11.25442886352539, "\u25cf": 8.920463562011719, "\u2605": 9.497474670410156, "\u2606": 11.457042694091797, "\u2609": 12.344346046447754, "\u2660": 12.513763427734375, "\u2663": 12.513763427734375, "\u2665": 10.040462493896484, "\u2666": 9.069899559020996, "\u266d": 11.87596607208252, "\u266f": 12.454044342041016, "\u27e8": 10.821682929992676, "\u27e9": 10.799272537231445, "\u2c7c": 1.0, "\u2ea9": 1.0, "\u2ebc": 1.0, "\u2f65": 1.0, "\u3001": 11.25442886352539, "\u3002": 11.336292266845703, "\u3008": 13.392313957214355, "\u3009": 12.881488800048828, "\u300a": 13.643628120422363, "\u300b": 13.320855140686035, "\u300c": 12.053421974182129, "\u300d": 12.053421974182129, "\u300e": 13.743711471557617, "\u300f": 13.743711471557617, "\u301c": 13.07723331451416, "\u3042": 12.370662689208984, "\u3044": 11.558252334594727, "\u3046": 11.546487808227539, "\u3048": 12.513763427734375, "\u304a": 11.558252334594727, "\u304b": 11.670870780944824, "\u304d": 11.308253288269043, "\u304f": 12.454044342041016, "\u3051": 12.22224235534668, "\u3053": 12.015321731567383, "\u3055": 11.87596607208252, "\u3057": 11.457042694091797, "\u3059": 12.269309997558594, "\u305b": 13.552656173706055, "\u305d": 12.425471305847168, "\u305f": 12.245499610900879, "\u3061": 13.25416374206543, "\u3063": 12.717859268188477, "\u3064": 12.756325721740723, "\u3066": 11.87596607208252, "\u3068": 12.034191131591797, "\u306a": 12.22224235534668, "\u306b": 11.996803283691406, "\u306c": 15.078713417053223, "\u306d": 13.743711471557617, "\u306e": 10.31653881072998, "\u306f": 11.534859657287598, "\u3072": 12.483458518981934, "\u3075": 12.680817604064941, "\u3078": 12.926950454711914, "\u307b": 13.191643714904785, "\u307e": 12.113439559936523, "\u307f": 12.39769172668457, "\u3080": 13.743711471557617, "\u3081": 13.024589538574219, "\u3082": 12.881488800048828, "\u3084": 12.926950454711914, "\u3086": 13.854937553405762, "\u3088": 14.123201370239258, "\u3089": 13.07723331451416, "\u308a": 11.725306510925293, "\u308b": 13.024589538574219, "\u308c": 12.344346046447754, "\u308d": 15.58953857421875, "\u3092": 12.177291870117188, "\u3093": 13.392313957214355, "\u30a1": 1.0, "\u30a2": 10.974417686462402, "\u30a3": 1.0, "\u30a4": 11.725306510925293, "\u30a6": 11.943219184875488, "\u30a7": 1.0, "\u30a8": 11.435877799987793, "\u30aa": 11.657712936401367, "\u30ab": 11.093440055847168, "\u30ad": 11.582205772399902, "\u30af": 11.582205772399902, "\u30b1": 12.015321731567383, "\u30b3": 11.308253288269043, "\u30b5": 11.100902557373047, "\u30b7": 11.071379661560059, "\u30b9": 11.394845962524414, "\u30bb": 11.81295394897461, "\u30bf": 11.768170356750488, "\u30c1": 12.269309997558594, "\u30c3": 14.490926742553711, "\u30c4": 12.269309997558594, "\u30c6": 11.512001037597656, "\u30c8": 11.007978439331055, "\u30ca": 11.943219184875488, "\u30cb": 12.318702697753906, "\u30ce": 12.680817604064941, "\u30cf": 10.886032104492188, "\u30d2": 11.457042694091797, "\u30d5": 10.679337501525879, "\u30d8": 11.768170356750488, "\u30db": 11.086031913757324, "\u30de": 11.782876014709473, "\u30df": 11.943219184875488, "\u30e0": 13.024589538574219, "\u30e1": 12.22224235534668, "\u30e2": 12.838003158569336, "\u30e3": 1.0, "\u30e5": 1.0, "\u30e7": 1.0, "\u30e9": 11.711417198181152, "\u30ea": 11.81295394897461, "\u30eb": 12.09303092956543, "\u30ec": 11.859837532043457, "\u30ed": 12.034191131591797, "\u30ef": 12.717859268188477, "\u30f3": 13.980100631713867, "\u30fb": 10.250399589538574, "\u30fc": 14.490926742553711, "\u4e00": 11.035661697387695, "\u4e09": 11.317512512207031, "\u4e0a": 11.859837532043457, "\u4e0b": 12.454044342041016, "\u4e0d": 12.39769172668457, "\u4e16": 12.269309997558594, "\u4e2d": 10.296234130859375, "\u4e3b": 12.796330451965332, "\u4e45": 13.132802963256836, "\u4e4b": 12.881488800048828, "\u4e5f": 12.680817604064941, "\u4e8b": 12.610613822937012, "\u4e8c": 12.245499610900879, "\u4e94": 12.344346046447754, "\u4e95": 12.717859268188477, "\u4eac": 11.606746673583984, "\u4eba": 10.69419002532959, "\u4ebb": 1.0, "\u4ec1": 12.881488800048828, "\u4ecb": 13.643628120422363, "\u4ee3": 11.619246482849121, "\u4eee": 13.191643714904785, "\u4f0a": 12.796330451965332, "\u4f1a": 10.95481014251709, "\u4f50": 12.796330451965332, "\u4f8d": 13.25416374206543, "\u4fdd": 12.645099639892578, "\u4fe1": 12.645099639892578, "\u5065": 13.854937553405762, "\u5143": 11.47866439819336, "\u5149": 12.370662689208984, "\u516b": 12.483458518981934, "\u516c": 11.594400405883789, "\u5185": 12.483458518981934, "\u51fa": 12.610613822937012, "\u5206": 11.960762977600098, "\u524d": 12.610613822937012, "\u5289": 13.25416374206543, "\u529b": 12.796330451965332, "\u52a0": 12.680817604064941, "\u52dd": 14.490926742553711, "\u5317": 11.725306510925293, "\u533a": 12.881488800048828, "\u5341": 12.680817604064941, "\u5343": 12.610613822937012, "\u5357": 12.053421974182129, "\u535a": 12.717859268188477, "\u539f": 12.293702125549316, "\u53e3": 13.392313957214355, "\u53e4": 12.177291870117188, "\u53f2": 13.132802963256836, "\u53f8": 11.582205772399902, "\u5408": 12.199514389038086, "\u5409": 12.717859268188477, "\u540c": 12.756325721740723, "\u540d": 11.909027099609375, "\u548c": 11.739391326904297, "\u56d7": 1.0, "\u56db": 12.545016288757324, "\u56fd": 11.071379661560059, "\u570b": 11.467795372009277, "\u571f": 13.191643714904785, "\u5730": 11.87596607208252, "\u5742": 15.078713417053223, "\u57ce": 11.978620529174805, "\u5802": 13.191643714904785, "\u5834": 12.269309997558594, "\u58eb": 11.570157051086426, "\u590f": 12.838003158569336, "\u5916": 12.39769172668457, "\u5927": 10.590076446533203, "\u5929": 11.365140914916992, "\u592a": 12.09303092956543, "\u592b": 12.545016288757324, "\u5948": 12.881488800048828, "\u5973": 11.725306510925293, "\u5b50": 10.436246871948242, "\u5b66": 12.053421974182129, "\u5b80": 1.0, "\u5b87": 13.854937553405762, "\u5b89": 12.344346046447754, "\u5b97": 13.643628120422363, "\u5b9a": 13.25416374206543, "\u5ba3": 14.742240905761719, "\u5bae": 12.425471305847168, "\u5bb6": 11.684205055236816, "\u5bbf": 13.743711471557617, "\u5bfa": 13.132802963256836, "\u5c07": 14.290255546569824, "\u5c0f": 11.523365020751953, "\u5c1a": 14.290255546569824, "\u5c71": 10.850419998168945, "\u5ca1": 13.191643714904785, "\u5cf6": 11.859837532043457, "\u5d0e": 12.545016288757324, "\u5ddd": 11.797801971435547, "\u5dde": 12.245499610900879, "\u5dff": 1.0, "\u5e1d": 12.577277183532715, "\u5e73": 11.996803283691406, "\u5e74": 11.859837532043457, "\u5e78": 12.645099639892578, "\u5e7f": 13.320855140686035, "\u5f18": 14.742240905761719, "\u5f35": 12.881488800048828, "\u5f73": 1.0, "\u5f8c": 12.717859268188477, "\u5fa1": 12.545016288757324, "\u5fb7": 13.392313957214355, "\u5fc3": 12.425471305847168, "\u5fc4": 1.0, "\u5fd7": 13.024589538574219, "\u5fe0": 15.078713417053223, "\u611b": 12.344346046447754, "\u6210": 12.344346046447754, "\u6211": 12.577277183532715, "\u6226": 12.269309997558594, "\u6238": 12.577277183532715, "\u624b": 12.318702697753906, "\u624c": 1.0, "\u653f": 12.974578857421875, "\u6587": 10.64551830291748, "\u65b0": 11.489653587341309, "\u65b9": 12.034191131591797, "\u65e5": 10.487641334533691, "\u660e": 11.670870780944824, "\u661f": 12.073030471801758, "\u6625": 12.13427448272705, "\u662d": 12.881488800048828, "\u667a": 13.25416374206543, "\u66f2": 13.552656173706055, "\u66f8": 13.132802963256836, "\u6708": 11.89236068725586, "\u6709": 12.13427448272705, "\u671d": 11.81295394897461, "\u6728": 11.570157051086426, "\u672c": 10.581128120422363, "\u674e": 12.370662689208984, "\u6751": 12.717859268188477, "\u6771": 11.317512512207031, "\u677e": 12.483458518981934, "\u6797": 12.881488800048828, "\u68ee": 13.552656173706055, "\u694a": 14.490926742553711, "\u6a39": 13.132802963256836, "\u6a4b": 12.881488800048828, "\u6b4c": 13.191643714904785, "\u6b62": 15.58953857421875, "\u6b63": 12.344346046447754, "\u6b66": 12.034191131591797, "\u6bd4": 13.132802963256836, "\u6c0f": 13.46927547454834, "\u6c11": 11.711417198181152, "\u6c34": 12.09303092956543, "\u6c35": 1.0, "\u6c37": 1.0, "\u6c38": 13.07723331451416, "\u6c5f": 12.344346046447754, "\u6ca2": 14.290255546569824, "\u6cb3": 12.425471305847168, "\u6cbb": 12.610613822937012, "\u6cd5": 12.22224235534668, "\u6d77": 11.512001037597656, "\u6e05": 12.680817604064941, "\u6f22": 11.909027099609375, "\u702c": 13.743711471557617, "\u706b": 12.13427448272705, "\u7248": 13.552656173706055, "\u72ac": 12.513763427734375, "\u738b": 11.925976753234863, "\u751f": 11.415151596069336, "\u7530": 11.534859657287598, "\u7537": 13.191643714904785, "\u7592": 1.0, "\u767a": 12.926950454711914, "\u767d": 11.843963623046875, "\u7684": 11.131322860717773, "\u7687": 12.269309997558594, "\u76ee": 12.756325721740723, "\u76f8": 13.191643714904785, "\u7701": 13.07723331451416, "\u771f": 12.113439559936523, "\u77f3": 12.610613822937012, "\u793a": 14.490926742553711, "\u793e": 11.195089340209961, "\u795e": 11.18689250946045, "\u798f": 12.645099639892578, "\u79be": 1.0, "\u79c0": 14.490926742553711, "\u79cb": 12.318702697753906, "\u7a7a": 11.859837532043457, "\u7acb": 12.838003158569336, "\u7ae0": 13.07723331451416, "\u7af9": 13.07723331451416, "\u7cf9": 1.0, "\u7f8e": 11.374944686889648, "\u7fa9": 12.926950454711914, "\u8033": 12.881488800048828, "\u826f": 13.024589538574219, "\u8279": 15.58953857421875, "\u82b1": 11.355432510375977, "\u82f1": 12.881488800048828, "\u83ef": 12.269309997558594, "\u8449": 12.177291870117188, "\u85e4": 12.881488800048828, "\u884c": 11.978620529174805, "\u8857": 13.552656173706055, "\u897f": 11.828338623046875, "\u898b": 13.024589538574219, "\u8a01": 1.0, "\u8a9e": 11.049796104431152, "\u8c37": 12.756325721740723, "\u8c9d": 13.392313957214355, "\u8cb4": 13.854937553405762, "\u8eca": 12.756325721740723, "\u8ecd": 12.796330451965332, "\u8fb6": 1.0, "\u9053": 11.558252334594727, "\u90ce": 12.113439559936523, "\u90e1": 15.58953857421875, "\u90e8": 12.053421974182129, "\u90fd": 12.293702125549316, "\u91cc": 12.15555191040039, "\u91ce": 12.13427448272705, "\u91d1": 11.753677368164062, "\u9234": 13.552656173706055, "\u9547": 14.490926742553711, "\u9577": 12.293702125549316, "\u9580": 12.796330451965332, "\u9593": 12.245499610900879, "\u961d": 15.58953857421875, "\u963f": 12.545016288757324, "\u9673": 13.024589538574219, "\u967d": 13.07723331451416, "\u96c4": 12.838003158569336, "\u9752": 12.577277183532715, "\u9762": 12.974578857421875, "\u98a8": 12.293702125549316, "\u98df": 12.926950454711914, "\u9999": 12.053421974182129, "\u99ac": 12.545016288757324, "\u9ad8": 11.943219184875488, "\u9f8d": 12.177291870117188, "\u9fb8": 1.0, "\ufb01": 8.19750690460205, "\ufb02": 9.31981086730957, "\uff01": 12.454044342041016, "\uff08": 10.827364921569824, "\uff09": 10.788253784179688, "\uff0c": 11.245733261108398, "\uff0d": 12.796330451965332, "\uff0e": 13.552656173706055, "\uff0f": 13.320855140686035, "\uff1a": 10.929248809814453, "\uff1f": 12.577277183532715, "\uff5e": 13.07723331451416, "the": 0.1353016495704651, "of": 0.2978856563568115, "and": 0.3176931142807007, "in": 0.49892646074295044, "to": 0.41164320707321167, "was": 2.2135801315307617, "he": 2.7418479919433594, "is": 0.609752357006073, "as": 1.3662747144699097, "for": 0.9421564340591431, "on": 1.2758843898773193, "with": 1.3167355060577393, "that": 1.1909363269805908, "it": 1.3465394973754883, "his": 3.1132595539093018, "by": 1.561514973640442, "at": 1.781949758529663, "from": 1.5790499448776245, "her": 3.741272449493408, "##s": 1.413320779800415, "she": 3.9685871601104736, "you": 1.5073926448822021, "had": 3.515986442565918, "an": 1.6111927032470703, "were": 3.3373093605041504, "but": 2.2533156871795654, "be": 1.5965993404388428, "this": 1.6789764165878296, "are": 1.3193671703338623, "not": 2.0098023414611816, "my": 3.3462038040161133, "they": 2.47278094291687, "one": 2.1520438194274902, "which": 2.1902008056640625, "or": 1.2061080932617188, "have": 1.9299168586730957, "him": 4.68290376663208, "me": 4.0555925369262695, "first": 2.732938528060913, "all": 2.278599500656128, "also": 2.329397439956665, "their": 2.7006072998046875, "has": 2.24589204788208, "up": 2.577218532562256, "who": 2.8965017795562744, "out": 2.813706636428833, "been": 3.097008466720581, "when": 2.3516876697540283, "after": 2.973768711090088, "there": 2.5506837368011475, "into": 2.801254987716675, "new": 2.80322527885437, "two": 2.820990562438965, "its": 2.800471305847168, "##a": 3.3342456817626953, "time": 2.65639328956604, "would": 3.424619674682617, "no": 3.00327205657959, "what": 2.7698843479156494, "about": 2.501295566558838, "said": 4.339593887329102, "we": 2.8915939331054688, "over": 2.909616708755493, "then": 3.1616365909576416, "other": 2.4150261878967285, "so": 2.767559051513672, "more": 2.2380735874176025, "##e": 3.0412094593048096, "can": 1.675195336341858, "if": 2.094144582748413, "like": 2.949989080429077, "back": 3.615732192993164, "them": 3.35299015045166, "only": 2.9134531021118164, "some": 2.706096887588501, "could": 3.9482874870300293, "##i": 4.005114555358887, "where": 3.36112904548645, "just": 3.1733956336975098, "##ing": 2.9476516246795654, "during": 3.4248037338256836, "before": 3.4078116416931152, "##n": 3.6022791862487793, "do": 2.856029987335205, "##o": 3.9614737033843994, "made": 3.4997432231903076, "school": 4.184863090515137, "through": 3.28175950050354, "than": 2.6174209117889404, "now": 3.5895495414733887, "years": 3.055889129638672, "most": 2.419631004333496, "world": 3.4208686351776123, "may": 2.47015643119812, "between": 3.0535473823547363, "down": 3.7118752002716064, "well": 3.3096470832824707, "three": 3.5215468406677246, "##d": 3.3649468421936035, "year": 3.057413339614868, "while": 3.3536531925201416, "will": 2.2349154949188232, "##ed": 3.561518669128418, "##r": 3.3481454849243164, "##y": 3.386198043823242, "later": 4.5559563636779785, "##t": 3.2045514583587646, "city": 3.755648612976074, "under": 3.5482561588287354, "around": 3.558448553085327, "did": 4.561289310455322, "such": 3.0237247943878174, "being": 3.7279982566833496, "used": 2.7054975032806396, "state": 3.360187292098999, "people": 2.9749045372009277, "part": 3.382225275039673, "know": 3.7712655067443848, "against": 4.5689167976379395, "your": 1.7965917587280273, "many": 2.938445806503296, "second": 4.066699028015137, "university": 4.602118492126465, "both": 3.498112201690674, "national": 4.1717705726623535, "##er": 3.2308409214019775, "these": 2.879347801208496, "don": 3.7411487102508545, "known": 3.388564109802246, "off": 3.772947072982788, "way": 3.488309860229492, "until": 3.9780263900756836, "re": 3.185616970062256, "how": 2.7633564472198486, "even": 3.562706232070923, "get": 2.9844696521759033, "head": 4.552291393280029, "...": 1.0, "didn": 5.58323860168457, "##ly": 3.5622756481170654, "team": 4.797330379486084, "american": 3.8051950931549072, "because": 3.353177547454834, "de": 4.05403995513916, "##l": 3.5321884155273438, "born": 4.371248245239258, "united": 3.568453073501587, "film": 5.056562900543213, "since": 3.8516392707824707, "still": 4.046236038208008, "long": 3.4011261463165283, "work": 3.4258604049682617, "south": 4.274938106536865, "us": 3.645036458969116, "became": 4.964923858642578, "any": 2.935528039932251, "high": 3.3472931385040283, "again": 4.772798538208008, "day": 3.3010430335998535, "family": 3.9324119091033936, "see": 3.1951746940612793, "right": 3.6654419898986816, "man": 4.556150436401367, "eyes": 5.2535223960876465, "house": 4.421806812286377, "season": 4.527677536010742, "war": 4.566085338592529, "states": 3.3618626594543457, "including": 3.6035079956054688, "took": 5.150562286376953, "life": 3.7055165767669678, "north": 4.168140411376953, "same": 3.5076754093170166, "each": 3.213879346847534, "called": 3.303880214691162, "name": 3.38523268699646, "much": 3.4302659034729004, "place": 3.6781392097473145, "however": 3.607391119003296, "go": 3.6108622550964355, "four": 4.018290996551514, "group": 4.068833351135254, "another": 3.815739631652832, "found": 3.589177131652832, "won": 4.8271989822387695, "area": 3.6149840354919434, "here": 3.4842758178710938, "going": 4.545300483703613, "10": 3.063915967941284, "away": 4.51177978515625, "series": 4.486352443695068, "left": 4.2969231605529785, "home": 3.5142297744750977, "music": 4.902263641357422, "best": 3.383214235305786, "make": 3.096402883529663, "hand": 4.590126037597656, "number": 3.2876999378204346, "company": 3.9512412548065186, "several": 4.082634449005127, "never": 4.631698131561279, "last": 3.8177034854888916, "john": 4.9578986167907715, "000": 3.4545772075653076, "very": 3.4148104190826416, "album": 5.793172359466553, "take": 3.4120798110961914, "end": 3.8238978385925293, "good": 3.6415958404541016, "too": 4.18461799621582, "following": 3.843844175338745, "released": 5.0325026512146, "game": 4.655997276306152, "played": 5.47639799118042, "little": 4.191003322601318, "began": 5.139964580535889, "district": 5.416240215301514, "##m": 3.84649920463562, "old": 3.9103732109069824, "want": 3.7171850204467773, "those": 3.8081674575805664, "side": 3.93739914894104, "held": 5.204376220703125, "own": 4.087299823760986, "early": 4.2440972328186035, "county": 4.047666072845459, "ll": 4.074079990386963, "league": 5.888146877288818, "use": 2.7232959270477295, "west": 4.637861251831055, "##u": 4.7851786613464355, "face": 4.934800148010254, "think": 4.457000255584717, "##es": 3.8399534225463867, "2010": 4.646298408508301, "government": 4.473599433898926, "##h": 4.159158229827881, "march": 4.853555202484131, "came": 5.120633125305176, "small": 3.6639275550842285, "general": 4.077456951141357, "town": 4.9577860832214355, "june": 4.909367084503174, "##on": 4.2399678230285645, "line": 4.303568363189697, "based": 3.6570632457733154, "something": 4.3659987449646, "##k": 4.327989101409912, "september": 5.01206111907959, "thought": 5.190532207489014, "looked": 6.415412902832031, "along": 4.356613636016846, "international": 4.776858806610107, "2011": 5.016368865966797, "air": 4.119148254394531, "july": 4.801973819732666, "club": 5.727550506591797, "went": 5.440976619720459, "january": 4.826930522918701, "october": 4.9369096755981445, "our": 3.180983781814575, "august": 4.986664772033691, "april": 4.780261993408203, "york": 4.579840183258057, "12": 3.6983845233917236, "few": 3.953726053237915, "2012": 4.854570388793945, "2008": 5.387367248535156, "east": 4.8752617835998535, "show": 4.109904766082764, "member": 4.916845798492432, "college": 4.846317768096924, "2009": 5.332124710083008, "father": 5.285587310791016, "public": 4.3621506690979, "##us": 4.253203392028809, "come": 4.294275760650635, "men": 4.372367858886719, "five": 4.328366279602051, "set": 3.857116222381592, "station": 5.700674057006836, "church": 5.9969563484191895, "##c": 3.823261260986328, "next": 4.199824810028076, "former": 5.376106262207031, "november": 5.213166236877441, "room": 4.847541809082031, "party": 5.1149678230285645, "located": 3.972130060195923, "december": 5.112861156463623, "2013": 4.7398457527160645, "age": 3.917585849761963, "got": 4.9752197265625, "2007": 5.4773173332214355, "##g": 4.171184062957764, "system": 3.4250574111938477, "let": 4.478978157043457, "love": 4.793527126312256, "2006": 5.714913845062256, "though": 4.475743293762207, "every": 3.785330057144165, "2014": 4.58052396774292, "look": 4.0820112228393555, "song": 5.319546222686768, "water": 3.325220823287964, "century": 4.881534099578857, "without": 3.9561524391174316, "body": 3.3372299671173096, "black": 4.487900257110596, "night": 4.7602128982543945, "within": 3.7652170658111572, "great": 3.9540741443634033, "women": 4.465520858764648, "single": 4.272429466247559, "ve": 3.856966257095337, "building": 4.855281829833984, "large": 3.8735499382019043, "population": 4.371087074279785, "river": 5.03904390335083, "named": 4.907330513000488, "band": 5.545984745025635, "white": 4.182859420776367, "started": 5.024747371673584, "##an": 4.988306045532227, "once": 4.1541242599487305, "15": 3.766707420349121, "20": 3.674738883972168, "should": 3.327244758605957, "18": 4.310998916625977, "2015": 4.346616744995117, "service": 3.830526828765869, "top": 3.7682390213012695, "built": 5.026503562927246, "british": 5.245573043823242, "open": 4.156569480895996, "death": 4.781947612762451, "king": 5.281908988952637, "moved": 5.861377239227295, "local": 4.271862030029297, "times": 4.098535060882568, "children": 4.272867202758789, "february": 5.181575775146484, "book": 4.739509105682373, "why": 4.456659317016602, "11": 4.18903923034668, "door": 5.766628742218018, "need": 3.2679953575134277, "president": 4.778202533721924, "order": 4.065234661102295, "final": 5.254669189453125, "road": 5.150991439819336, "wasn": 6.450944900512695, "although": 4.344209671020508, "due": 4.168154716491699, "major": 4.27195930480957, "died": 5.329998016357422, "village": 6.003940582275391, "third": 4.716794967651367, "knew": 6.762853145599365, "2016": 4.609894752502441, "asked": 5.558405876159668, "turned": 5.960904598236084, "st": 4.189136505126953, "wanted": 5.940234184265137, "say": 4.540602684020996, "##p": 3.923786163330078, "together": 4.4763102531433105, "received": 5.264307975769043, "main": 4.209935188293457, "son": 5.290400505065918, "served": 5.604947566986084, "different": 3.49467134475708, "##en": 4.839446067810059, "behind": 5.206375598907471, "himself": 6.171127796173096, "felt": 6.296789169311523, "members": 4.776643753051758, "power": 4.266777515411377, "football": 5.987764358520508, "law": 4.354111671447754, "voice": 5.72741174697876, "play": 4.662766933441162, "##in": 4.152346611022949, "near": 4.597371578216553, "park": 5.023354530334473, "history": 4.209523677825928, "30": 3.701563596725464, "having": 4.39930534362793, "2005": 5.756241321563721, "16": 4.30957555770874, "##man": 5.2326531410217285, "saw": 5.890843391418457, "mother": 5.182602882385254, "##al": 3.898620367050171, "army": 5.667572975158691, "point": 4.250954627990723, "front": 4.932475566864014, "help": 3.501838445663452, "english": 4.29503870010376, "street": 5.361615180969238, "art": 4.99765682220459, "late": 4.848868370056152, "hands": 5.3884806632995605, "games": 5.381524085998535, "award": 5.911092281341553, "##ia": 4.571866512298584, "young": 4.928795337677002, "14": 4.30592155456543, "put": 4.387582302093506, "published": 5.335007190704346, "country": 4.382228374481201, "division": 5.575897216796875, "across": 4.681877613067627, "told": 5.57676362991333, "13": 4.421910285949707, "often": 3.4588778018951416, "ever": 4.836021423339844, "french": 5.074159145355225, "london": 5.763670444488525, "center": 4.249003887176514, "six": 4.6172966957092285, "red": 4.073401927947998, "2017": 4.774217128753662, "led": 5.533000946044922, "days": 3.6737046241760254, "include": 3.602719306945801, "light": 4.331896781921387, "25": 4.097513198852539, "find": 3.461022138595581, "tell": 4.935492038726807, "among": 4.68243932723999, "species": 4.749389171600342, "really": 4.586422443389893, "according": 3.9471797943115234, "central": 4.667522430419922, "half": 4.514296531677246, "2004": 5.943117618560791, "form": 3.5495264530181885, "original": 4.761335849761963, "gave": 5.965302467346191, "office": 4.368798732757568, "making": 4.270177841186523, "enough": 4.585302352905273, "lost": 5.424802780151367, "full": 3.938124656677246, "opened": 5.863962650299072, "must": 3.711491107940674, "included": 5.112804889678955, "live": 4.3395161628723145, "given": 4.336572170257568, "german": 5.422956466674805, "player": 5.459327220916748, "run": 4.480484485626221, "business": 3.997755765914917, "woman": 5.274416446685791, "community": 4.689243793487549, "cup": 5.1408915519714355, "might": 4.23864221572876, "million": 4.338077545166016, "land": 4.649757385253906, "2000": 5.133939743041992, "court": 4.862541198730469, "development": 4.702992916107178, "17": 4.630467891693115, "short": 4.276182651519775, "round": 5.299893379211426, "ii": 5.321257591247559, "km": 5.2655768394470215, "seen": 4.89104700088501, "class": 4.697929859161377, "story": 5.040860652923584, "always": 4.345194339752197, "become": 4.2564616203308105, "sure": 4.283879280090332, "research": 4.543002128601074, "almost": 4.711925506591797, "director": 5.733264923095703, "council": 6.195738792419434, "la": 4.968528747558594, "##2": 4.046197414398193, "career": 5.122433662414551, "things": 4.344923973083496, "using": 3.532900333404541, "island": 5.109878063201904, "##z": 5.098977565765381, "couldn": 6.858363628387451, "car": 3.93496036529541, "##is": 4.458581447601318, "24": 4.323959827423096, "close": 4.76671838760376, "force": 5.062709808349609, "##1": 4.324215888977051, "better": 4.323225975036621, "free": 3.771427631378174, "support": 4.457995414733887, "control": 4.283822059631348, "field": 4.783109188079834, "students": 4.65321683883667, "2003": 5.928483486175537, "education": 4.733820915222168, "married": 5.634012222290039, "##b": 4.473272323608398, "nothing": 5.467545032501221, "worked": 5.6749958992004395, "others": 4.502000331878662, "record": 4.922484397888184, "big": 4.568731307983398, "inside": 4.722196102142334, "level": 4.040329456329346, "anything": 5.1821393966674805, "continued": 6.2800469398498535, "give": 4.263348579406738, "james": 5.608673572540283, "##3": 4.30421257019043, "military": 5.310461044311523, "established": 5.2856764793396, "non": 4.018624305725098, "returned": 6.399503231048584, "feel": 4.787469387054443, "does": 3.521592617034912, "title": 5.136745452880859, "written": 4.8683953285217285, "thing": 4.827523708343506, "feet": 4.455324172973633, "william": 5.865516662597656, "far": 4.696689605712891, "co": 4.1663737297058105, "association": 5.302138805389404, "hard": 4.611566543579102, "already": 4.934265613555908, "2002": 6.127272605895996, "##ra": 5.0366902351379395, "championship": 6.9575300216674805, "human": 4.377668857574463, "western": 5.258965969085693, "100": 3.9147465229034424, "##na": 5.217162609100342, "department": 4.753592014312744, "hall": 5.864360809326172, "role": 4.82353401184082, "various": 4.570707321166992, "production": 4.8655009269714355, "21": 4.737983703613281, "19": 4.854788303375244, "heart": 4.192948341369629, "2001": 6.09444522857666, "living": 4.621530055999756, "fire": 5.0755157470703125, "version": 4.945011138916016, "##ers": 4.190936088562012, "##f": 4.50299072265625, "television": 5.4889092445373535, "royal": 6.325562953948975, "##4": 4.316839218139648, "produced": 4.836178302764893, "working": 4.626220226287842, "act": 4.457878589630127, "case": 4.354296684265137, "society": 5.5044660568237305, "region": 4.890806198120117, "present": 4.668883800506592, "radio": 5.373664379119873, "period": 4.249217987060547, "looking": 4.718300819396973, "least": 4.146095275878906, "total": 4.030649185180664, "keep": 4.145524024963379, "england": 5.495609760284424, "wife": 5.62556791305542, "program": 4.25328254699707, "per": 3.16896653175354, "brother": 6.148112773895264, "mind": 5.0927886962890625, "special": 4.5952863693237305, "22": 4.8584675788879395, "##le": 4.351738929748535, "am": 4.259466648101807, "works": 4.585779190063477, "soon": 5.405154228210449, "##6": 4.274214744567871, "political": 5.523209571838379, "george": 5.755847930908203, "services": 4.144182205200195, "taken": 4.857913970947266, "created": 4.795851230621338, "##7": 4.297895908355713, "further": 5.175955772399902, "able": 4.450429439544678, "reached": 6.011204242706299, "david": 5.899471282958984, "union": 5.392374515533447, "joined": 6.243531703948975, "upon": 4.939971446990967, "done": 4.6726274490356445, "important": 3.814908027648926, "social": 4.584792137145996, "information": 3.372056484222412, "either": 4.224575996398926, "##ic": 4.150550365447998, "##x": 4.0041093826293945, "appeared": 6.1699371337890625, "position": 4.873366832733154, "ground": 4.954765796661377, "lead": 4.797275543212891, "rock": 5.108361721038818, "dark": 5.297358989715576, "election": 6.28786563873291, "23": 4.997204780578613, "board": 5.115193843841553, "france": 5.656314373016357, "hair": 5.083567142486572, "course": 4.5992021560668945, "arms": 5.943937301635742, "site": 4.528085708618164, "police": 5.746385097503662, "girl": 5.54147481918335, "instead": 4.899147987365723, "real": 4.379517078399658, "sound": 5.187105655670166, "##v": 4.646169185638428, "words": 4.64143180847168, "moment": 6.170315742492676, "##te": 4.202021598815918, "someone": 4.747288227081299, "##8": 4.310131072998047, "summer": 5.023371696472168, "project": 4.963434219360352, "announced": 5.678397178649902, "san": 5.200163841247559, "less": 3.767852306365967, "wrote": 6.057863712310791, "past": 4.793172359466553, "followed": 5.5174479484558105, "##5": 4.459118843078613, "blue": 4.79617977142334, "founded": 5.582066535949707, "al": 4.638550758361816, "finally": 5.822348117828369, "india": 5.552496910095215, "taking": 4.7100019454956055, "records": 5.055089950561523, "america": 4.562415599822998, "##ne": 4.589045524597168, "1999": 6.267746448516846, "design": 4.897464752197266, "considered": 4.522874355316162, "northern": 5.315442085266113, "god": 5.618034362792969, "stop": 4.952042102813721, "battle": 5.931632041931152, "toward": 5.7733354568481445, "european": 5.623060703277588, "outside": 4.881563663482666, "described": 5.520437717437744, "track": 5.592940330505371, "today": 4.252646446228027, "playing": 5.815306186676025, "language": 4.76790189743042, "28": 4.975973129272461, "call": 4.420395374298096, "26": 5.048654556274414, "heard": 5.85867977142334, "professional": 4.859954833984375, "low": 3.9606659412384033, "australia": 5.560344219207764, "miles": 4.405816555023193, "california": 4.722628593444824, "win": 5.735434055328369, "yet": 5.11442232131958, "green": 4.743916988372803, "##ie": 5.35467529296875, "trying": 5.478643894195557, "blood": 3.6032216548919678, "##ton": 5.755812168121338, "southern": 5.264898300170898, "science": 5.124998092651367, "maybe": 6.025050163269043, "everything": 5.269107818603516, "match": 5.846395969390869, "square": 4.747483730316162, "27": 5.134649753570557, "mouth": 5.161431312561035, "video": 4.746089458465576, "race": 5.799163818359375, "recorded": 5.629371643066406, "leave": 5.10072135925293, "above": 4.1986188888549805, "##9": 4.3355607986450195, "daughter": 5.815571308135986, "points": 5.097589015960693, "space": 4.756271839141846, "1998": 6.38632345199585, "museum": 6.452521800994873, "change": 4.079854965209961, "middle": 4.830183029174805, "common": 3.4692652225494385, "##0": 4.142001628875732, "move": 4.7479400634765625, "tv": 4.959315776824951, "post": 4.613800048828125, "##ta": 5.163939476013184, "lake": 5.353503227233887, "seven": 5.2116923332214355, "tried": 6.098364353179932, "elected": 6.378165245056152, "closed": 5.835189342498779, "ten": 5.259596824645996, "paul": 6.050446510314941, "minister": 6.913122177124023, "##th": 5.005356311798096, "months": 4.164843559265137, "start": 4.048936367034912, "chief": 5.886068344116211, "return": 4.827862739562988, "canada": 5.151635646820068, "person": 3.7988224029541016, "sea": 4.842467308044434, "release": 5.126482963562012, "similar": 4.472866058349609, "modern": 5.0942816734313965, "brought": 5.8568196296691895, "rest": 4.942836761474609, "hit": 5.328831195831299, "formed": 5.190166473388672, "mr": 6.02889347076416, "##la": 5.294876575469971, "1997": 6.4107232093811035, "floor": 5.315580368041992, "event": 5.1896185874938965, "doing": 5.2382612228393555, "thomas": 6.093242645263672, "1996": 6.413824081420898, "robert": 6.019172191619873, "care": 4.100124359130859, "killed": 6.074831485748291, "training": 4.903954982757568, "star": 4.786289691925049, "week": 4.3654561042785645, "needed": 4.872864246368408, "turn": 4.658809661865234, "finished": 6.268044471740723, "railway": 7.489781856536865, "rather": 4.999433517456055, "news": 4.803875923156738, "health": 3.7141599655151367, "sent": 5.664240837097168, "example": 3.6235713958740234, "ran": 6.38632345199585, "term": 3.9293174743652344, "michael": 5.9445414543151855, "coming": 5.520550727844238, "currently": 4.938849925994873, "yes": 5.303524971008301, "forces": 5.793135166168213, "despite": 5.879817962646484, "gold": 5.483314514160156, "areas": 4.525272846221924, "50": 3.886723041534424, "stage": 5.357934951782227, "fact": 4.646286964416504, "29": 5.179564952850342, "dead": 5.55034065246582, "says": 4.791712760925293, "popular": 4.434960842132568, "2018": 5.987674236297607, "originally": 5.408608913421631, "germany": 5.790430545806885, "probably": 4.869720458984375, "developed": 5.096885681152344, "result": 4.351212024688721, "pulled": 6.830968856811523, "friend": 5.582276821136475, "stood": 7.4721269607543945, "money": 4.4855194091796875, "running": 5.149002552032471, "mi": 5.694268226623535, "signed": 5.884197235107422, "word": 4.248101711273193, "songs": 6.2356462478637695, "child": 4.519702434539795, "eventually": 5.905389308929443, "met": 5.541070938110352, "tour": 6.07620906829834, "average": 3.396782636642456, "teams": 6.161160945892334, "minutes": 4.127208232879639, "festival": 6.662755489349365, "current": 4.328666687011719, "deep": 5.102300643920898, "kind": 4.904610633850098, "1995": 6.493450164794922, "decided": 6.118913173675537, "usually": 3.473790168762207, "eastern": 5.547057628631592, "seemed": 7.224952697753906, "##ness": 4.499514579772949, "episode": 5.986773490905762, "bed": 5.614242076873779, "added": 4.96296501159668, "table": 4.851845741271973, "indian": 5.733579635620117, "private": 5.174655914306641, "charles": 6.217164516448975, "route": 5.570834159851074, "available": 3.9008491039276123, "idea": 5.111002445220947, "throughout": 4.813551902770996, "centre": 6.235588550567627, "addition": 4.7608466148376465, "appointed": 6.873440265655518, "style": 5.105615615844727, "1994": 6.600718021392822, "books": 5.634202003479004, "eight": 5.357023239135742, "construction": 5.447572231292725, "press": 5.127492904663086, "mean": 4.504380226135254, "wall": 5.075823783874512, "friends": 5.439699172973633, "remained": 6.849041938781738, "schools": 5.387367248535156, "study": 4.609678745269775, "##ch": 4.885178565979004, "##um": 4.619107246398926, "institute": 6.12473726272583, "oh": 5.915401458740234, "chinese": 5.951993465423584, "sometimes": 4.274816036224365, "events": 5.23691987991333, "possible": 4.371131896972656, "1992": 6.649914264678955, "australian": 6.40359354019165, "type": 3.5278310775756836, "brown": 5.1547465324401855, "forward": 5.700268268585205, "talk": 5.427656173706055, "process": 3.8713104724884033, "food": 3.8577587604522705, "debut": 6.65464448928833, "seat": 5.610186576843262, "performance": 5.084206581115723, "committee": 6.391979694366455, "features": 4.8828020095825195, "character": 5.223775386810303, "arts": 6.134189128875732, "herself": 7.1542067527771, "else": 5.576165676116943, "lot": 4.426156520843506, "strong": 5.038677215576172, "russian": 6.580865859985352, "range": 4.019480228424072, "hours": 3.8429148197174072, "peter": 6.573552131652832, "arm": 5.652374267578125, "##da": 5.3785295486450195, "morning": 5.478671073913574, "dr": 4.693694591522217, "sold": 5.284181594848633, "##ry": 4.557249069213867, "quickly": 5.126311302185059, "directed": 6.121537208557129, "1993": 6.617920875549316, "guitar": 6.935195446014404, "china": 5.548566818237305, "##w": 4.787605285644531, "31": 5.164572238922119, "list": 4.037709712982178, "##ma": 4.843227386474609, "performed": 5.576882839202881, "media": 5.241504192352295, "uk": 5.363859176635742, "players": 5.731972694396973, "smile": 7.424554347991943, "##rs": 4.747418403625488, "myself": 6.903165340423584, "40": 4.305778980255127, "placed": 5.551651477813721, "coach": 6.615891456604004, "province": 6.582906723022461, "towards": 5.992870807647705, "wouldn": 6.741556167602539, "leading": 5.241696357727051, "whole": 4.756140232086182, "boy": 5.774900436401367, "official": 5.089772701263428, "designed": 4.832196235656738, "grand": 5.84737491607666, "census": 5.226339817047119, "##el": 5.207345962524414, "europe": 5.280263900756836, "attack": 5.600072383880615, "japanese": 6.033223628997803, "henry": 6.396785259246826, "1991": 6.687219142913818, "##re": 4.689822196960449, "##os": 4.77586555480957, "cross": 5.461109161376953, "getting": 4.757943630218506, "alone": 5.594125270843506, "action": 4.950379371643066, "lower": 4.182925701141357, "network": 4.852873802185059, "wide": 4.725162982940674, "washington": 5.133594036102295, "japan": 5.9242024421691895, "1990": 6.394887447357178, "hospital": 5.2865705490112305, "believe": 5.395460605621338, "changed": 5.542686939239502, "sister": 6.31038761138916, "##ar": 5.434786796569824, "hold": 5.013421058654785, "gone": 6.194241523742676, "sir": 6.683777809143066, "hadn": 8.55573844909668, "ship": 5.89486026763916, "##ka": 6.158431053161621, "studies": 5.39409065246582, "academy": 6.348765850067139, "shot": 5.933850288391113, "rights": 5.24375057220459, "below": 3.7456440925598145, "base": 4.772397041320801, "bad": 5.076076984405518, "involved": 5.324479579925537, "kept": 5.985873222351074, "largest": 4.433226108551025, "##ist": 5.358607769012451, "bank": 5.0382585525512695, "future": 5.202175617218018, "especially": 4.484185695648193, "beginning": 5.217433929443359, "mark": 5.4033942222595215, "movement": 5.117494583129883, "section": 4.749820709228516, "female": 5.202956676483154, "magazine": 6.34367036819458, "plan": 4.508776664733887, "professor": 6.650263786315918, "lord": 6.518192291259766, "longer": 4.648741245269775, "##ian": 5.503021240234375, "sat": 6.028095245361328, "walked": 7.779050827026367, "hill": 6.125202178955078, "actually": 4.604093551635742, "civil": 5.44053316116333, "energy": 4.357858180999756, "model": 4.994396686553955, "families": 5.594125270843506, "size": 4.059634685516357, "thus": 5.211505889892578, "aircraft": 6.417281150817871, "completed": 5.709404945373535, "includes": 4.483133792877197, "data": 3.960404872894287, "captain": 6.900242805480957, "##or": 4.584526538848877, "fight": 5.978567123413086, "vocals": 8.201210975646973, "featured": 6.476480484008789, "richard": 6.409760475158691, "bridge": 6.1657280921936035, "fourth": 5.824719429016113, "1989": 6.739450931549072, "officer": 5.878726005554199, "stone": 5.630884647369385, "hear": 5.9199395179748535, "##ism": 5.282376289367676, "means": 3.890291213989258, "medical": 4.063252925872803, "groups": 5.1773176193237305, "management": 4.725609302520752, "self": 5.0912981033325195, "lips": 6.827622890472412, "competition": 6.395903587341309, "entire": 5.06984806060791, "lived": 5.854252815246582, "technology": 5.1138763427734375, "leaving": 6.036909580230713, "federal": 4.60445499420166, "tournament": 7.335356712341309, "bit": 4.979157447814941, "passed": 5.610897064208984, "hot": 4.625284671783447, "independent": 5.567305564880371, "awards": 6.377167224884033, "kingdom": 5.7836456298828125, "mary": 6.336490154266357, "spent": 5.939460754394531, "fine": 5.395460605621338, "doesn": 4.706466197967529, "reported": 5.226339817047119, "##ling": 5.6124444007873535, "jack": 6.142940998077393, "fall": 4.957399845123291, "raised": 5.940062046051025, "itself": 4.964146614074707, "stay": 5.092530727386475, "true": 4.979042053222656, "studio": 6.319263935089111, "1988": 6.900354862213135, "sports": 5.494205474853516, "replaced": 6.076159477233887, "paris": 6.475892543792725, "systems": 4.7811784744262695, "saint": 6.711552619934082, "leader": 5.835227966308594, "theatre": 7.023745536804199, "whose": 5.454397201538086, "market": 4.657092571258545, "capital": 5.19913911819458, "parents": 5.3160176277160645, "spanish": 5.631452560424805, "canadian": 6.127272605895996, "earth": 4.616724491119385, "##ity": 4.904854774475098, "cut": 4.741801738739014, "degree": 4.737467288970947, "writing": 5.368215560913086, "bay": 5.681976318359375, "christian": 6.432704448699951, "awarded": 6.7630486488342285, "natural": 4.441689968109131, "higher": 4.343808650970459, "bill": 5.202319145202637, "##as": 5.013455390930176, "coast": 5.545897960662842, "provided": 4.951434135437012, "previous": 5.458344459533691, "senior": 6.077391624450684, "ft": 5.414561748504639, "valley": 5.77278995513916, "organization": 5.12518835067749, "stopped": 6.7499237060546875, "onto": 5.683404445648193, "countries": 4.978105545043945, "parts": 4.516757488250732, "conference": 6.36513090133667, "queen": 6.393128395080566, "security": 4.797083854675293, "interest": 5.012197017669678, "saying": 6.140207767486572, "allowed": 5.715153694152832, "master": 5.5517096519470215, "earlier": 5.658354759216309, "phone": 4.5839948654174805, "matter": 5.082272529602051, "smith": 6.344056606292725, "winning": 6.184426784515381, "try": 4.6161298751831055, "happened": 6.557726860046387, "moving": 5.423750877380371, "campaign": 6.411411762237549, "los": 5.691683769226074, "##ley": 6.479202747344971, "breath": 6.02341365814209, "nearly": 5.148710250854492, "mid": 5.190389633178711, "1987": 6.937872886657715, "certain": 4.349030017852783, "girls": 5.839999198913574, "date": 4.427518844604492, "italian": 5.901247024536133, "african": 5.742956638336182, "standing": 6.098414897918701, "fell": 6.712761402130127, "artist": 6.224447727203369, "##ted": 4.8680419921875, "shows": 4.7622222900390625, "deal": 5.5065531730651855, "mine": 6.270553112030029, "industry": 4.881921768188477, "1986": 6.806040287017822, "##ng": 5.260358810424805, "everyone": 5.409038066864014, "republic": 6.037240982055664, "provide": 4.122353553771973, "collection": 5.504326820373535, "library": 6.040371417999268, "student": 5.21987771987915, "##ville": 5.66865348815918, "primary": 4.822788715362549, "owned": 5.709643840789795, "older": 5.112767219543457, "via": 5.099515438079834, "heavy": 5.404298782348633, "1st": 6.281859874725342, "makes": 4.440835475921631, "##able": 4.475216865539551, "attention": 5.625850200653076, "anyone": 5.471518039703369, "africa": 5.552117824554443, "##ri": 5.233585834503174, "stated": 6.324236869812012, "length": 4.719910621643066, "ended": 6.312318801879883, "fingers": 6.465446472167969, "command": 5.873485565185547, "staff": 5.362748622894287, "skin": 4.158087253570557, "foreign": 5.6587114334106445, "opening": 5.5850749015808105, "governor": 6.584870338439941, "okay": 7.231497764587402, "medal": 7.753169059753418, "kill": 6.032186508178711, "sun": 4.868733882904053, "cover": 4.841650009155273, "job": 4.374215602874756, "1985": 6.905645370483398, "introduced": 5.7320427894592285, "chest": 5.618407726287842, "hell": 7.148003101348877, "feeling": 5.628773212432861, "##ies": 4.867586612701416, "success": 5.6842360496521, "meet": 5.092512607574463, "reason": 5.048231601715088, "standard": 4.370845317840576, "meeting": 5.950603008270264, "novel": 6.367039203643799, "1984": 6.90496826171875, "trade": 5.501052379608154, "source": 4.395997047424316, "buildings": 6.324362754821777, "##land": 6.162448406219482, "rose": 5.967198848724365, "guy": 6.484373569488525, "goal": 5.6631975173950195, "##ur": 5.397956848144531, "chapter": 5.9527764320373535, "native": 5.435201644897461, "husband": 6.064703941345215, "previously": 5.97892427444458, "unit": 4.825364589691162, "limited": 5.119441032409668, "entered": 6.230519771575928, "weeks": 4.437167167663574, "producer": 6.278599262237549, "operations": 5.7619428634643555, "mountain": 5.615390777587891, "takes": 4.59559965133667, "covered": 5.228299140930176, "forced": 6.636458873748779, "related": 4.206004619598389, "roman": 6.085211277008057, "complete": 4.497867107391357, "successful": 5.720590591430664, "key": 4.617239475250244, "texas": 5.06112003326416, "cold": 4.675802707672119, "##ya": 6.464284420013428, "channel": 5.812616348266602, "1980": 6.657105922698975, "traditional": 5.211609363555908, "films": 6.466827869415283, "dance": 6.428003311157227, "clear": 4.943693161010742, "approximately": 4.668703079223633, "500": 4.523593425750732, "nine": 5.7650041580200195, "van": 6.227880477905273, "prince": 6.599720001220703, "question": 4.818019866943359, "active": 5.005660057067871, "tracks": 7.068286895751953, "ireland": 6.328790187835693, "regional": 6.0774407386779785, "silver": 5.900379657745361, "author": 5.556295394897461, "personal": 4.722399711608887, "sense": 5.215765953063965, "operation": 5.817926406860352, "##ine": 4.449393272399902, "economic": 5.54787015914917, "1983": 6.961102485656738, "holding": 6.0636820793151855, "twenty": 6.430877685546875, "isbn": 8.98604679107666, "additional": 4.759922027587891, "speed": 4.991163730621338, "hour": 4.432702541351318, "edition": 6.23449182510376, "regular": 4.938802242279053, "historic": 6.250365257263184, "places": 5.266168117523193, "whom": 6.338856220245361, "shook": 9.472175598144531, "movie": 5.45863676071167, "km\u00b2": 7.989136219024658, "secretary": 6.490912437438965, "prior": 5.201723575592041, "report": 4.4803147315979, "chicago": 5.889126777648926, "read": 4.4153218269348145, "foundation": 5.8511810302734375, "view": 4.45029354095459, "engine": 5.434579372406006, "scored": 7.445246696472168, "1982": 6.955511093139648, "units": 5.301344394683838, "ask": 5.074954986572266, "airport": 5.490333557128906, "property": 4.689945220947266, "ready": 5.360675811767578, "immediately": 5.548450946807861, "lady": 6.599221706390381, "month": 4.354296684265137, "listed": 4.988903522491455, "contract": 5.330114841461182, "##de": 4.94356632232666, "manager": 5.5368123054504395, "themselves": 5.616012096405029, "lines": 5.376081466674805, "##ki": 5.741053104400635, "navy": 6.4618916511535645, "writer": 6.248316287994385, "meant": 6.273787975311279, "##ts": 4.746115684509277, "runs": 5.742321491241455, "##ro": 5.1600117683410645, "practice": 5.054380416870117, "championships": 7.729996681213379, "singer": 5.944368839263916, "glass": 5.462254524230957, "commission": 6.102400302886963, "required": 4.408210277557373, "forest": 6.162179946899414, "starting": 5.105708599090576, "culture": 5.464842796325684, "generally": 4.3217597007751465, "giving": 5.612010955810547, "access": 4.592479228973389, "attended": 6.967925548553467, "test": 4.203708171844482, "couple": 5.427630424499512, "stand": 5.455852508544922, "catholic": 7.0312676429748535, "martin": 6.448584079742432, "caught": 6.696423530578613, "executive": 5.782103061676025, "##less": 5.3391218185424805, "eye": 4.869190216064453, "##ey": 6.195072650909424, "thinking": 5.93355131149292, "chair": 6.893195629119873, "quite": 5.202278137207031, "shoulder": 6.138633728027344, "1979": 6.969608306884766, "hope": 5.754097938537598, "decision": 5.690042495727539, "plays": 5.874571800231934, "defeated": 7.574211597442627, "municipality": 7.697086334228516, "whether": 4.453650951385498, "structure": 4.912837982177734, "offered": 5.792356491088867, "slowly": 6.054629802703857, "pain": 4.106931686401367, "ice": 5.370425701141357, "direction": 5.659685134887695, "##ion": 4.597909927368164, "paper": 5.088286399841309, "mission": 5.959414005279541, "1981": 6.674598693847656, "mostly": 5.4349684715271, "200": 4.748788356781006, "noted": 6.354928493499756, "individual": 4.615878105163574, "managed": 6.427023887634277, "nature": 5.263106346130371, "lives": 5.425264835357666, "plant": 4.56004524230957, "##ha": 5.271791458129883, "helped": 6.295562267303467, "except": 5.546477317810059, "studied": 6.676212787628174, "computer": 4.575757026672363, "figure": 5.059533596038818, "relationship": 5.4941229820251465, "issue": 5.277801036834717, "significant": 5.300074577331543, "loss": 4.64961576461792, "die": 5.783057689666748, "smiled": 10.279622077941895, "gun": 6.500575065612793, "ago": 4.642734527587891, "highest": 4.873884677886963, "1972": 6.977944850921631, "##am": 5.399982929229736, "male": 5.268755912780762, "bring": 5.117853164672852, "goals": 6.037004470825195, "mexico": 5.548044204711914, "problem": 4.6466755867004395, "distance": 5.082436561584473, "commercial": 5.318253517150879, "completely": 5.3008904457092285, "location": 4.499626159667969, "annual": 4.6338958740234375, "famous": 5.33646297454834, "drive": 4.959896087646484, "1976": 7.072945594787598, "neck": 5.486230850219727, "1978": 7.061800956726074, "surface": 4.5533647537231445, "caused": 4.370246410369873, "italy": 6.106503009796143, "understand": 5.081908226013184, "greek": 5.371374130249023, "highway": 6.316380023956299, "wrong": 5.77738094329834, "hotel": 5.57512092590332, "comes": 4.445384979248047, "appearance": 5.629434585571289, "joseph": 6.682151794433594, "double": 5.245894908905029, "issues": 5.235559463500977, "musical": 6.418112277984619, "companies": 4.9657673835754395, "castle": 7.037428855895996, "income": 4.641325950622559, "review": 5.104832172393799, "assembly": 6.464066505432129, "bass": 6.9128947257995605, "initially": 6.460371971130371, "parliament": 7.250435829162598, "artists": 6.613950729370117, "experience": 4.2826008796691895, "1974": 6.979887962341309, "particular": 4.901153087615967, "walk": 5.665807247161865, "foot": 4.754339694976807, "engineering": 5.974377632141113, "talking": 6.16632080078125, "window": 5.522275447845459, "dropped": 6.736682891845703, "##ter": 5.045610427856445, "miss": 6.267925262451172, "baby": 4.624812126159668, "boys": 6.045277118682861, "break": 5.245937824249268, "1975": 6.983175277709961, "stars": 5.665970802307129, "edge": 5.730647563934326, "remember": 5.350090980529785, "policy": 5.129249095916748, "carried": 6.238654136657715, "train": 6.106097221374512, "stadium": 7.022730350494385, "bar": 5.232547283172607, "sex": 5.345574855804443, "angeles": 5.835073471069336, "evidence": 5.53271484375, "##ge": 4.99326229095459, "becoming": 5.779611110687256, "assistant": 6.142257213592529, "soviet": 7.024381160736084, "1977": 7.014139175415039, "upper": 5.005997657775879, "step": 4.654629707336426, "wing": 6.943600654602051, "1970": 6.779526710510254, "youth": 6.660367965698242, "financial": 4.937760829925537, "reach": 5.186620235443115, "##ll": 5.9242448806762695, "actor": 5.692723274230957, "numerous": 5.926955699920654, "##se": 4.661055564880371, "##st": 4.711296558380127, "nodded": 11.606746673583984, "arrived": 6.833590984344482, "##ation": 4.841363906860352, "minute": 5.411441802978516, "##nt": 4.908111095428467, "believed": 6.078920841217041, "sorry": 7.107558250427246, "complex": 5.2183732986450195, "beautiful": 5.498424053192139, "victory": 6.883213520050049, "associated": 4.619027137756348, "temple": 7.196624279022217, "1968": 6.953614711761475, "1973": 7.006869792938232, "chance": 5.538622856140137, "perhaps": 5.828517436981201, "metal": 5.260140895843506, "##son": 6.146474361419678, "1945": 7.03408670425415, "bishop": 8.046089172363281, "##et": 5.337050437927246, "lee": 6.113889694213867, "launched": 6.511245250701904, "particularly": 5.484921455383301, "tree": 5.3118815422058105, "le": 5.695713996887207, "retired": 6.988310813903809, "subject": 5.104589939117432, "prize": 6.9404401779174805, "contains": 4.588634014129639, "yeah": 7.653712749481201, "theory": 5.61374568939209, "empire": 6.17465353012085, "##ce": 4.793090343475342, "suddenly": 6.771401405334473, "waiting": 6.419221878051758, "trust": 5.985828399658203, "recording": 6.487563133239746, "##to": 5.005558490753174, "happy": 6.009498596191406, "terms": 4.6134233474731445, "camp": 6.322408676147461, "champion": 7.185812950134277, "1971": 6.981347560882568, "religious": 6.362242698669434, "pass": 5.222725868225098, "zealand": 6.669684410095215, "names": 4.897919654846191, "2nd": 6.439266681671143, "port": 5.635690689086914, "ancient": 5.463160991668701, "tom": 6.126392364501953, "corner": 5.983356952667236, "represented": 6.486820697784424, "watch": 5.283735275268555, "legal": 4.924614429473877, "anti": 4.608361721038818, "justice": 6.204377174377441, "cause": 3.6582956314086914, "watched": 7.558044910430908, "brothers": 6.717986583709717, "45": 4.812661170959473, "material": 4.819826126098633, "changes": 4.607885360717773, "simply": 4.766040802001953, "response": 5.208151817321777, "louis": 6.500424861907959, "fast": 4.977842807769775, "##ting": 5.0870771408081055, "answer": 4.0851664543151855, "60": 4.4199628829956055, "historical": 5.755490303039551, "1969": 6.884649753570557, "stories": 6.24562931060791, "straight": 5.641444206237793, "create": 4.5116047859191895, "feature": 5.436707019805908, "increased": 5.103304862976074, "rate": 4.074039936065674, "administration": 5.4624409675598145, "virginia": 5.665676593780518, "el": 5.209351062774658, "activities": 5.2326531410217285, "cultural": 6.169126510620117, "overall": 5.256641864776611, "winner": 6.905081272125244, "programs": 4.962156295776367, "basketball": 6.504345893859863, "legs": 5.675919055938721, "guard": 6.585607528686523, "beyond": 5.703553199768066, "cast": 5.6849684715271, "doctor": 4.508335113525391, "mm": 5.839571475982666, "flight": 5.680848121643066, "results": 4.521438121795654, "remains": 5.711625576019287, "cost": 3.6629395484924316, "effect": 4.799470901489258, "winter": 5.343135356903076, "##ble": 4.901305198669434, "larger": 4.9742536544799805, "islands": 5.883181571960449, "problems": 4.49301290512085, "chairman": 7.218142509460449, "grew": 6.3973283767700195, "commander": 7.248684883117676, "isn": 5.153004169464111, "1967": 7.068154335021973, "pay": 3.922842502593994, "failed": 6.718454360961914, "selected": 5.862648963928223, "hurt": 6.803387641906738, "fort": 6.0226664543151855, "box": 4.8872761726379395, "regiment": 8.671503067016602, "majority": 5.475614547729492, "journal": 6.393872261047363, "35": 4.912622928619385, "edward": 6.965526103973389, "plans": 5.432093620300293, "##ke": 5.550690174102783, "##ni": 5.356112003326416, "shown": 5.138729572296143, "pretty": 5.583840370178223, "irish": 6.084416389465332, "characters": 5.7993879318237305, "directly": 4.888115882873535, "scene": 6.456763744354248, "likely": 4.681072235107422, "operated": 6.482597827911377, "allow": 4.803131103515625, "spring": 5.3051862716674805, "##j": 5.504299163818359, "junior": 7.106591701507568, "matches": 7.041428565979004, "looks": 5.497678756713867, "mike": 6.771994113922119, "houses": 6.323795318603516, "fellow": 7.021208763122559, "##tion": 4.663102626800537, "beach": 5.572201728820801, "marriage": 6.057621955871582, "##ham": 6.58938455581665, "##ive": 4.5529351234436035, "rules": 5.321372985839844, "oil": 4.464194297790527, "65": 5.232865333557129, "florida": 5.220693588256836, "expected": 5.413546085357666, "nearby": 6.216087818145752, "congress": 5.630316734313965, "sam": 6.490315914154053, "peace": 6.228224277496338, "recent": 5.077908515930176, "iii": 6.311882495880127, "wait": 5.643646240234375, "subsequently": 7.435613632202148, "cell": 4.350843906402588, "##do": 5.760828495025635, "variety": 4.577637195587158, "serving": 5.283579349517822, "agreed": 6.5940842628479, "please": 4.469719886779785, "poor": 5.729184627532959, "joe": 6.692768096923828, "pacific": 5.8549628257751465, "attempt": 6.245104789733887, "wood": 5.3301615715026855, "democratic": 6.646598815917969, "piece": 5.340654373168945, "prime": 5.854884147644043, "##ca": 5.603841304779053, "rural": 6.564845561981201, "mile": 5.546448707580566, "touch": 5.6150803565979, "appears": 5.419784069061279, "township": 6.8162055015563965, "1964": 6.950895309448242, "1966": 7.235256671905518, "soldiers": 6.771598815917969, "##men": 5.982415199279785, "##ized": 5.228236198425293, "1965": 7.019436836242676, "pennsylvania": 5.96261739730835, "closer": 6.277815818786621, "fighting": 6.536437034606934, "claimed": 6.67827844619751, "score": 5.646525859832764, "jones": 6.648691177368164, "physical": 4.731662273406982, "editor": 6.600302219390869, "##ous": 5.074285984039307, "filled": 5.867592811584473, "genus": 6.3724541664123535, "specific": 4.235628128051758, "sitting": 6.434816837310791, "super": 5.252225399017334, "mom": 6.468575954437256, "##va": 6.022480010986328, "therefore": 5.07325553894043, "supported": 6.369809150695801, "status": 5.279642105102539, "fear": 6.408936023712158, "cases": 4.599010944366455, "store": 4.7870354652404785, "meaning": 4.19187068939209, "wales": 6.945713043212891, "minor": 5.853031158447266, "spain": 6.237264633178711, "tower": 6.735349655151367, "focus": 5.477236270904541, "vice": 6.2734880447387695, "frank": 6.704420566558838, "follow": 4.8113813400268555, "parish": 7.563695430755615, "separate": 5.332827091217041, "golden": 5.972067832946777, "horse": 5.977852821350098, "fifth": 6.188936233520508, "remaining": 5.952602386474609, "branch": 5.664599418640137, "32": 5.339663982391357, "presented": 6.1944074630737305, "stared": 10.436246871948242, "##id": 4.90056037902832, "uses": 4.621725559234619, "secret": 5.490416049957275, "forms": 4.676616191864014, "##co": 4.654665470123291, "baseball": 6.345022201538086, "exactly": 5.562727928161621, "##ck": 5.9125542640686035, "choice": 5.243257999420166, "note": 4.578572750091553, "discovered": 5.964949607849121, "travel": 4.958542823791504, "composed": 5.6681294441223145, "truth": 6.31688117980957, "russia": 6.3676323890686035, "ball": 5.732357025146484, "color": 4.517192840576172, "kiss": 7.790741920471191, "dad": 7.009746551513672, "wind": 5.579126834869385, "continue": 5.122433662414551, "ring": 5.818231105804443, "referred": 5.00960111618042, "numbers": 4.831103801727295, "digital": 5.708245754241943, "greater": 5.186296463012695, "##ns": 4.837090492248535, "metres": 7.015398025512695, "slightly": 5.368628025054932, "direct": 5.0118913650512695, "increase": 4.504369735717773, "1960": 6.870711326599121, "responsible": 5.226382255554199, "crew": 6.735349655151367, "rule": 5.34412956237793, "trees": 5.649092674255371, "troops": 7.117831230163574, "##no": 5.178581237792969, "broke": 7.017289161682129, "goes": 5.226382255554199, "individuals": 5.1898417472839355, "hundred": 6.325562953948975, "weight": 4.342381477355957, "creek": 6.7499237060546875, "sleep": 5.47089958190918, "memory": 5.815647125244141, "defense": 6.083374500274658, "provides": 4.4984564781188965, "ordered": 6.467119216918945, "code": 4.4449992179870605, "value": 4.377236366271973, "jewish": 7.031779766082764, "windows": 4.797878742218018, "1944": 7.692862033843994, "safe": 5.012180328369141, "judge": 6.346957206726074, "whatever": 6.190370082855225, "corps": 6.9820780754089355, "realized": 7.532161235809326, "growing": 5.160366535186768, "pre": 4.164304733276367, "##ga": 6.102400302886963, "cities": 5.168240070343018, "alexander": 7.090713024139404, "gaze": 8.514857292175293, "lies": 6.0915913581848145, "spread": 5.292669773101807, "scott": 6.485262870788574, "letter": 5.521172523498535, "showed": 6.5553388595581055, "situation": 5.739891529083252, "mayor": 7.296072483062744, "transport": 5.983671188354492, "watching": 6.69167423248291, "workers": 5.570655822753906, "extended": 5.944411754608154, "##li": 5.480053901672363, "expression": 6.1372199058532715, "normal": 4.374574661254883, "##ment": 5.182340621948242, "chart": 5.561373233795166, "multiple": 5.024730205535889, "border": 5.965919494628906, "##ba": 5.501995086669922, "host": 5.649317741394043, "##ner": 6.179664611816406, "daily": 4.68091344833374, "mrs": 7.1981353759765625, "walls": 5.860226154327393, "piano": 7.459872245788574, "##ko": 6.807880878448486, "heat": 4.484837055206299, "cannot": 4.831812858581543, "##ate": 5.132060527801514, "earned": 5.630631923675537, "products": 4.337627410888672, "drama": 6.391237258911133, "era": 6.080255031585693, "authority": 5.906552314758301, "seasons": 6.3086466789245605, "join": 5.796926498413086, "grade": 5.751176357269287, "##io": 5.438085079193115, "sign": 4.767050743103027, "difficult": 5.238111972808838, "machine": 5.5460429191589355, "1963": 7.087188243865967, "territory": 6.30690860748291, "mainly": 5.676480293273926, "##wood": 6.249076843261719, "stations": 6.275228500366211, "squadron": 9.122357368469238, "1962": 7.265525817871094, "stepped": 8.3257417678833, "iron": 5.386082649230957, "19th": 6.310138702392578, "##led": 6.342833995819092, "serve": 5.408962726593018, "appear": 5.103993892669678, "sky": 5.826098918914795, "speak": 6.113940715789795, "broken": 5.765472888946533, "charge": 4.984464645385742, "knowledge": 5.379068851470947, "kilometres": 7.371740341186523, "removed": 5.6204352378845215, "ships": 6.733257293701172, "article": 4.893518447875977, "campus": 6.393060684204102, "simple": 4.571177005767822, "##ty": 5.189435958862305, "pushed": 7.363678932189941, "britain": 6.186789035797119, "##ve": 5.431241035461426, "leaves": 5.2880024909973145, "recently": 5.443954944610596, "cd": 6.045563697814941, "soft": 5.200491905212402, "boston": 6.2896928787231445, "latter": 6.773970603942871, "easy": 4.512996196746826, "acquired": 6.474205017089844, "poland": 7.385687351226807, "##sa": 5.616415977478027, "quality": 4.480874061584473, "officers": 6.470765590667725, "presence": 5.698039531707764, "planned": 6.778432846069336, "nations": 6.262393474578857, "mass": 5.152085304260254, "broadcast": 6.9356608390808105, "jean": 7.337440013885498, "share": 4.764142990112305, "image": 5.201559066772461, "influence": 5.862689018249512, "wild": 5.654439449310303, "offer": 4.7518744468688965, "emperor": 7.214447021484375, "electric": 5.554190158843994, "reading": 5.307397842407227, "headed": 7.207249164581299, "ability": 5.042365550994873, "promoted": 7.658493518829346, "yellow": 5.246860980987549, "ministry": 7.658733367919922, "1942": 7.595355987548828, "throat": 5.816140651702881, "smaller": 5.125017166137695, "politician": 7.776351451873779, "##by": 6.250951766967773, "latin": 5.331727504730225, "spoke": 7.097663402557373, "cars": 5.8171281814575195, "williams": 6.771303176879883, "males": 6.280650615692139, "lack": 5.633410930633545, "pop": 5.678694725036621, "80": 4.811826229095459, "##ier": 5.922216415405273, "acting": 6.2098212242126465, "seeing": 6.4595770835876465, "consists": 5.266409397125244, "##ti": 5.319015026092529, "estate": 5.369502067565918, "1961": 7.118528842926025, "pressure": 4.499229431152344, "johnson": 6.493674278259277, "newspaper": 7.093432903289795, "jr": 6.335277080535889, "chris": 6.726441383361816, "olympics": 7.900777816772461, "online": 4.387600421905518, "conditions": 4.404918193817139, "beat": 6.253653049468994, "elements": 5.2972235679626465, "walking": 6.0140228271484375, "vote": 5.972822666168213, "##field": 6.75690221786499, "needs": 4.477165222167969, "carolina": 5.6740403175354, "text": 5.131773471832275, "featuring": 6.688762664794922, "global": 5.441837787628174, "block": 5.361783981323242, "shirt": 7.12835168838501, "levels": 4.524219036102295, "francisco": 6.384177207946777, "purpose": 5.075171947479248, "females": 6.283433437347412, "et": 5.181414604187012, "dutch": 6.543876647949219, "duke": 7.4293060302734375, "ahead": 6.175903797149658, "gas": 4.42841911315918, "twice": 5.7721357345581055, "safety": 5.215891361236572, "serious": 5.102207183837891, "turning": 6.228395938873291, "highly": 5.361205577850342, "lieutenant": 7.957622051239014, "firm": 5.683770656585693, "maria": 7.330684661865234, "amount": 3.9119439125061035, "mixed": 5.897368907928467, "daniel": 7.075349807739258, "proposed": 6.40598726272583, "perfect": 5.2508440017700195, "agreement": 5.764102935791016, "affairs": 6.859333038330078, "3rd": 6.553591251373291, "seconds": 5.718626022338867, "contemporary": 6.7928466796875, "paid": 4.822732448577881, "1943": 7.813982963562012, "prison": 6.531611442565918, "save": 5.020386219024658, "kitchen": 6.062224388122559, "label": 6.063196182250977, "administrative": 6.409760475158691, "intended": 5.837707996368408, "constructed": 6.806142330169678, "academic": 5.951688766479492, "nice": 5.975846767425537, "teacher": 6.106553554534912, "races": 7.344942092895508, "1956": 7.551564693450928, "formerly": 6.462399005889893, "corporation": 5.911927700042725, "ben": 5.927846908569336, "nation": 5.506887435913086, "issued": 5.7461018562316895, "shut": 6.688126564025879, "1958": 7.4530205726623535, "drums": 7.791289329528809, "housing": 6.0060954093933105, "victoria": 7.0513014793396, "seems": 5.644957065582275, "opera": 7.278386116027832, "1959": 7.2995805740356445, "graduated": 7.099853515625, "function": 4.577670097351074, "von": 7.5654401779174805, "mentioned": 5.964553356170654, "picked": 6.971053123474121, "build": 5.111471652984619, "recognized": 5.962881088256836, "shortly": 6.983053207397461, "protection": 5.396758079528809, "picture": 5.643422603607178, "notable": 6.883765697479248, "exchange": 5.531400680541992, "elections": 7.274787902832031, "1980s": 6.9404401779174805, "loved": 6.547262191772461, "percent": 4.298062324523926, "racing": 7.0805792808532715, "fish": 5.125626087188721, "elizabeth": 6.727291107177734, "garden": 5.785374164581299, "volume": 5.253587245941162, "hockey": 7.47791051864624, "1941": 7.452630043029785, "beside": 7.8621506690979, "settled": 6.994335651397705, "##ford": 7.0805792808532715, "1940": 7.316457271575928, "competed": 8.840779304504395, "replied": 8.392353057861328, "drew": 7.5565290451049805, "1948": 7.4567341804504395, "actress": 6.0628557205200195, "marine": 6.1337714195251465, "scotland": 6.764713764190674, "steel": 5.738766193389893, "glanced": 11.162697792053223, "farm": 6.152301788330078, "steve": 6.831387996673584, "1957": 7.4044671058654785, "risk": 4.570139408111572, "tonight": 7.093160629272461, "positive": 5.328248500823975, "magic": 6.5993876457214355, "singles": 7.554367542266846, "effects": 4.594715118408203, "gray": 6.224618911743164, "screen": 5.18268346786499, "dog": 5.062298774719238, "##ja": 6.524262428283691, "residents": 5.565560340881348, "bus": 6.2921342849731445, "sides": 5.593669414520264, "none": 6.236513137817383, "secondary": 5.984884262084961, "literature": 6.314253807067871, "polish": 6.751470565795898, "destroyed": 6.997918605804443, "flying": 6.4927778244018555, "founder": 6.525650978088379, "households": 7.150163173675537, "1939": 7.392642498016357, "lay": 6.10356330871582, "reserve": 6.344635963439941, "usa": 5.331493377685547, "gallery": 7.062989234924316, "##ler": 5.498866558074951, "1946": 7.465190410614014, "industrial": 5.875014781951904, "younger": 6.108484268188477, "approach": 5.759069919586182, "appearances": 7.735157489776611, "urban": 6.239813327789307, "ones": 5.574524402618408, "1950": 7.15768575668335, "finish": 5.973089218139648, "avenue": 6.772784233093262, "powerful": 5.633000373840332, "fully": 5.530858039855957, "growth": 4.764951705932617, "page": 4.25639009475708, "honor": 6.393872261047363, "jersey": 6.028189182281494, "projects": 6.044274806976318, "advanced": 5.615204334259033, "revealed": 6.494197845458984, "basic": 4.679133892059326, "90": 4.752070903778076, "infantry": 8.276540756225586, "pair": 5.927379608154297, "equipment": 5.3707661628723145, "visit": 4.903421401977539, "33": 5.629875659942627, "evening": 6.412858486175537, "search": 4.623970031738281, "grant": 6.241147994995117, "effort": 6.073406219482422, "solo": 7.1142096519470215, "treatment": 4.240321159362793, "buried": 7.267306327819824, "republican": 6.615638256072998, "primarily": 5.430053234100342, "bottom": 4.976792812347412, "owner": 5.524173259735107, "1970s": 6.883544921875, "israel": 7.0842156410217285, "gives": 5.136706829071045, "jim": 6.851711750030518, "dream": 6.261385440826416, "bob": 6.522722244262695, "remain": 5.727758884429932, "spot": 5.7921342849731445, "70": 4.877843379974365, "notes": 5.900627136230469, "produce": 4.828187942504883, "champions": 7.928953170776367, "contact": 4.49453067779541, "ed": 5.360291004180908, "soul": 6.661251544952393, "accepted": 5.992916107177734, "ways": 4.736267566680908, "del": 5.282242774963379, "##ally": 5.8449883460998535, "losing": 6.669238567352295, "split": 6.036105155944824, "price": 4.210811614990234, "capacity": 5.786479473114014, "basis": 5.313051700592041, "trial": 6.081986904144287, "questions": 4.969667911529541, "##ina": 5.384478569030762, "1955": 7.361539840698242, "20th": 6.290058612823486, "guess": 6.712854385375977, "officially": 6.202587127685547, "memorial": 6.778532028198242, "naval": 7.266658782958984, "initial": 5.590392589569092, "##ization": 5.551855564117432, "whispered": 10.788253784179688, "median": 5.205695152282715, "engineer": 6.657634258270264, "##ful": 5.877231597900391, "sydney": 7.461445331573486, "##go": 5.619062423706055, "columbia": 6.315191268920898, "strength": 5.541214942932129, "300": 5.063263893127441, "1952": 7.595355987548828, "tears": 7.07227897644043, "senate": 6.288839817047119, "00": 4.600653648376465, "card": 4.700675964355469, "asian": 6.597312927246094, "agent": 5.589272499084473, "1947": 7.367611885070801, "software": 5.121959686279297, "44": 5.526443958282471, "draw": 6.0943450927734375, "warm": 5.09566593170166, "supposed": 6.761972904205322, "com": 3.7369768619537354, "pro": 4.350388050079346, "##il": 5.787437915802002, "transferred": 6.695234298706055, "leaned": 10.533292770385742, "##at": 5.575747966766357, "candidate": 6.6538543701171875, "escape": 6.761484146118164, "mountains": 5.999279022216797, "asia": 5.822692394256592, "potential": 5.198156356811523, "activity": 5.047280788421631, "entertainment": 6.1786274909973145, "seem": 5.7732625007629395, "traffic": 5.958538055419922, "jackson": 6.431088447570801, "murder": 6.953732967376709, "36": 5.19862699508667, "slow": 5.509454250335693, "product": 4.518799304962158, "orchestra": 8.059952735900879, "haven": 6.31394100189209, "agency": 5.58582878112793, "bbc": 7.535545825958252, "taught": 6.951958179473877, "website": 4.828145503997803, "comedy": 6.670576095581055, "unable": 6.318322658538818, "storm": 6.47861385345459, "planning": 5.508700370788574, "albums": 7.437148571014404, "rugby": 8.522218704223633, "environment": 5.149879455566406, "scientific": 5.817394256591797, "grabbed": 9.4446382522583, "protect": 5.392871856689453, "##hi": 5.9256415367126465, "boat": 6.279865741729736, "typically": 4.340574264526367, "1954": 7.397244930267334, "1953": 7.509817600250244, "damage": 4.887890815734863, "principal": 6.208359241485596, "divided": 5.511411666870117, "dedicated": 6.206674575805664, "mount": 6.174218654632568, "ohio": 5.827826023101807, "##berg": 7.016658306121826, "pick": 5.544884204864502, "fought": 7.1203460693359375, "driver": 5.605839252471924, "##der": 5.849727630615234, "empty": 6.363751411437988, "shoulders": 7.120066165924072, "sort": 6.115527153015137, "thank": 6.258249759674072, "berlin": 7.527105808258057, "prominent": 6.580702781677246, "account": 4.479496479034424, "freedom": 6.324552536010742, "necessary": 5.068193435668945, "efforts": 6.523569107055664, "alex": 7.477510452270508, "headquarters": 6.611088275909424, "follows": 5.790430545806885, "alongside": 6.986351013183594, "des": 6.069681167602539, "simon": 7.534275054931641, "andrew": 6.820653438568115, "suggested": 6.536827087402344, "operating": 5.506803512573242, "learning": 5.398931503295898, "steps": 5.120235443115234, "1949": 7.500772476196289, "sweet": 5.4794840812683105, "technical": 5.93308162689209, "begin": 4.957721710205078, "easily": 5.002861499786377, "34": 5.48358678817749, "teeth": 5.709473133087158, "speaking": 6.047762393951416, "settlement": 6.648254871368408, "scale": 5.497098922729492, "##sh": 5.766592502593994, "renamed": 7.5654401779174805, "ray": 6.026220321655273, "max": 6.310636520385742, "enemy": 7.307814598083496, "semi": 6.0380940437316895, "joint": 5.315096855163574, "compared": 5.176416397094727, "##rd": 6.141047954559326, "scottish": 6.8533172607421875, "leadership": 6.414376258850098, "analysis": 5.410656929016113, "offers": 4.843255996704102, "georgia": 5.923525810241699, "pieces": 5.79083776473999, "captured": 7.2467780113220215, "animal": 5.0679240226745605, "deputy": 7.751852512359619, "guest": 6.524879455566406, "organized": 6.408661365509033, "##lin": 6.410998821258545, "tony": 7.322945594787598, "combined": 5.639088153839111, "method": 4.916197299957275, "challenge": 6.486968994140625, "1960s": 6.880788803100586, "huge": 5.832484245300293, "wants": 6.159714698791504, "battalion": 8.877392768859863, "sons": 7.224176406860352, "rise": 5.593365669250488, "crime": 5.982370376586914, "types": 3.9479122161865234, "facilities": 6.0086236000061035, "telling": 6.947594165802002, "path": 5.781002998352051, "1951": 7.781486511230469, "platform": 6.288900852203369, "sit": 5.919771194458008, "1990s": 7.097253322601318, "##lo": 4.824420928955078, "tells": 6.13795280456543, "assigned": 6.264590740203857, "rich": 5.2274980545043945, "pull": 5.8307108879089355, "##ot": 5.33228874206543, "commonly": 4.558943271636963, "alive": 6.809622287750244, "##za": 6.484744071960449, "letters": 5.951210975646973, "concept": 5.810424327850342, "conducted": 6.501931190490723, "wearing": 6.534566402435303, "happen": 5.808501243591309, "bought": 6.102046489715576, "becomes": 5.451967716217041, "holy": 6.983907222747803, "gets": 5.309431552886963, "ocean": 5.481546878814697, "defeat": 7.548340320587158, "languages": 5.959676742553711, "purchased": 5.913809299468994, "coffee": 5.91838264465332, "occurred": 6.3295512199401855, "titled": 7.132166385650635, "##q": 5.432093620300293, "declared": 6.824392318725586, "applied": 5.4029669761657715, "sciences": 6.7323079109191895, "concert": 7.129339218139648, "sounds": 5.970117568969727, "jazz": 7.291912078857422, "brain": 4.70040225982666, "##me": 5.098384857177734, "painting": 6.577852249145508, "fleet": 7.256348133087158, "tax": 4.356887340545654, "nick": 7.1266608238220215, "##ius": 6.1511335372924805, "michigan": 6.010282039642334, "count": 5.607686519622803, "animals": 5.004411220550537, "leaders": 6.4396209716796875, "episodes": 6.4226975440979, "##line": 5.337426662445068, "content": 4.9775800704956055, "##den": 6.2529473304748535, "birth": 5.077019214630127, "##it": 5.696353912353516, "clubs": 7.184320449829102, "64": 5.629245281219482, "palace": 7.46223258972168, "critical": 5.751995086669922, "refused": 7.723072052001953, "fair": 5.802042007446289, "leg": 5.466500759124756, "laughed": 9.607282638549805, "returning": 7.070547103881836, "surrounding": 5.886394023895264, "participated": 8.20368766784668, "formation": 5.9553914070129395, "lifted": 8.176372528076172, "pointed": 7.249480724334717, "connected": 5.6697678565979, "rome": 6.771598815917969, "medicine": 5.109803199768066, "laid": 6.846060276031494, "taylor": 6.9364752769470215, "santa": 6.5978102684021, "powers": 6.223648548126221, "adam": 7.085025310516357, "tall": 5.694436073303223, "shared": 6.099472522735596, "focused": 6.4797186851501465, "knowing": 6.401410102844238, "yards": 6.794360160827637, "entrance": 6.892861366271973, "falls": 5.848511219024658, "##wa": 6.603801250457764, "calling": 6.195072650909424, "##ad": 6.124581813812256, "sources": 5.215558052062988, "chosen": 6.432775020599365, "beneath": 6.705621242523193, "resources": 5.272871494293213, "yard": 6.386659622192383, "##ite": 5.817014217376709, "nominated": 7.446408748626709, "silence": 8.0823974609375, "zone": 5.584502696990967, "defined": 4.93311882019043, "##que": 5.9794158935546875, "gained": 6.765694618225098, "thirty": 6.977217197418213, "38": 5.493820667266846, "bodies": 6.001104354858398, "moon": 6.014717102050781, "##ard": 6.554941654205322, "adopted": 6.315441131591797, "christmas": 6.584461212158203, "widely": 5.478698253631592, "register": 6.040704250335693, "apart": 5.928483486175537, "iran": 7.443505764007568, "premier": 6.8909687995910645, "serves": 5.94040584564209, "du": 5.66986608505249, "unknown": 6.221710205078125, "parties": 6.1610002517700195, "##les": 5.121561527252197, "generation": 5.955434799194336, "##ff": 5.966801643371582, "continues": 6.156614780426025, "quick": 5.0733642578125, "fields": 6.067189693450928, "brigade": 8.80923843383789, "quiet": 6.925593376159668, "teaching": 6.35962438583374, "clothes": 6.725781440734863, "impact": 5.4408721923828125, "weapons": 7.006120681762695, "partner": 6.141258239746094, "flat": 5.314406871795654, "theater": 6.989291667938232, "supreme": 6.36822509765625, "1938": 7.776620864868164, "37": 5.42444372177124, "relations": 6.751470565795898, "##tor": 5.17136287689209, "plants": 4.77958869934082, "suffered": 7.167022705078125, "1936": 7.751063823699951, "wilson": 6.963850021362305, "kids": 5.594277381896973, "begins": 5.362941741943359, "##age": 4.984381675720215, "1918": 7.675164699554443, "seats": 6.667191505432129, "armed": 6.944421291351318, "internet": 5.097366809844971, "models": 5.8856611251831055, "worth": 5.091923236846924, "laws": 5.464228630065918, "400": 5.265795707702637, "communities": 6.236570835113525, "classes": 5.955260276794434, "background": 5.839765548706055, "knows": 6.460878372192383, "thanks": 5.835537910461426, "quarter": 5.991964817047119, "reaching": 6.578991413116455, "humans": 5.364317893981934, "carry": 5.381770133972168, "killing": 6.823144435882568, "format": 5.43748664855957, "kong": 7.463217735290527, "hong": 7.564349174499512, "setting": 5.491512775421143, "75": 4.961348533630371, "architecture": 6.656489849090576, "disease": 4.007930278778076, "railroad": 7.026671409606934, "inc": 4.712743759155273, "possibly": 6.12473726272583, "wish": 5.913641929626465, "arthur": 7.371201038360596, "thoughts": 6.595076560974121, "harry": 6.826788425445557, "doors": 6.5776896476745605, "density": 5.90692663192749, "##di": 5.577749729156494, "crowd": 7.143411636352539, "illinois": 5.9908342361450195, "stomach": 5.241119384765625, "tone": 6.482302188873291, "unique": 5.106884956359863, "reports": 5.44773006439209, "anyway": 7.003752708435059, "##ir": 6.478466510772705, "liberal": 7.216908931732178, "der": 5.867753028869629, "vehicle": 5.090819835662842, "thick": 5.383419036865234, "dry": 4.6222429275512695, "drug": 4.830692768096924, "faced": 7.212297439575195, "largely": 6.373846054077148, "facility": 5.878200531005859, "theme": 6.442244529724121, "holds": 6.0425591468811035, "creation": 6.436156749725342, "strange": 7.080310344696045, "colonel": 8.084229469299316, "##mi": 5.504132270812988, "revolution": 6.375106334686279, "bell": 6.327460289001465, "politics": 6.841180801391602, "turns": 6.1099090576171875, "silent": 7.527946472167969, "rail": 6.98659610748291, "relief": 6.1306986808776855, "independence": 6.396921157836914, "combat": 6.685859203338623, "shape": 5.265445709228516, "write": 5.467464447021484, "determined": 5.650088787078857, "sales": 5.068876266479492, "learned": 6.369347095489502, "4th": 6.734112739562988, "finger": 6.175740718841553, "oxford": 7.273320198059082, "providing": 5.468456268310547, "1937": 7.699080944061279, "heritage": 6.772191524505615, "fiction": 7.000024795532227, "situated": 6.319954872131348, "designated": 6.237611770629883, "allowing": 6.101187705993652, "distribution": 5.7836456298828125, "hosted": 7.213985919952393, "##est": 4.5707292556762695, "sight": 6.9391560554504395, "interview": 6.378898620605469, "estimated": 5.2644171714782715, "reduced": 5.778184413909912, "##ria": 5.962924957275391, "toronto": 7.19270658493042, "footballer": 9.170086860656738, "keeping": 5.946355819702148, "guys": 6.839278221130371, "damn": 8.47829818725586, "claim": 5.367173194885254, "motion": 5.760505199432373, "sport": 6.246679782867432, "sixth": 6.821794033050537, "stayed": 7.629215240478516, "##ze": 5.468697547912598, "en": 4.517099380493164, "rear": 6.260615825653076, "receive": 4.761983871459961, "handed": 7.58528470993042, "twelve": 6.823456287384033, "dress": 6.556691646575928, "audience": 6.690763473510742, "granted": 6.636631488800049, "brazil": 6.815380096435547, "##well": 6.864518642425537, "spirit": 6.446371555328369, "##ated": 5.347687721252441, "noticed": 6.787517547607422, "etc": 4.606582164764404, "olympic": 7.28892707824707, "representative": 6.3746418952941895, "eric": 7.214908123016357, "tight": 6.305978775024414, "trouble": 6.2590179443359375, "reviews": 5.640074253082275, "drink": 5.382507801055908, "vampire": 8.327143669128418, "missing": 6.5142927169799805, "roles": 6.306846618652344, "ranked": 6.196349143981934, "newly": 6.640087127685547, "household": 5.996137619018555, "finals": 8.0823974609375, "wave": 6.1497015953063965, "critics": 7.580175399780273, "##ee": 6.087798118591309, "phase": 5.971269607543945, "massachusetts": 6.231611728668213, "pilot": 6.730885982513428, "unlike": 5.729637145996094, "philadelphia": 6.654205322265625, "bright": 6.061642169952393, "guns": 7.549414157867432, "crown": 6.56717586517334, "organizations": 5.962046146392822, "roof": 6.097157001495361, "42": 5.514692306518555, "respectively": 6.315253734588623, "clearly": 6.268104553222656, "tongue": 6.296421051025391, "marked": 6.263758659362793, "circle": 6.303071022033691, "fox": 6.410379409790039, "korea": 6.970330238342285, "bronze": 7.360827922821045, "brian": 7.2681169509887695, "expanded": 6.850963592529297, "sexual": 5.913349151611328, "supply": 5.318622589111328, "yourself": 5.312065124511719, "inspired": 6.6454668045043945, "labour": 7.428163528442383, "fc": 7.5300517082214355, "##ah": 6.6273603439331055, "reference": 5.456355571746826, "vision": 5.6890387535095215, "draft": 6.664527416229248, "connection": 5.696320056915283, "brand": 5.251901149749756, "reasons": 5.324410438537598, "1935": 7.675895690917969, "classic": 5.854647159576416, "driving": 5.437097072601318, "trip": 5.482906341552734, "jesus": 6.926515102386475, "cells": 4.172430515289307, "entry": 5.599797248840332, "1920": 7.326206207275391, "neither": 6.614541053771973, "trail": 6.632758140563965, "claims": 5.782690525054932, "atlantic": 6.2076287269592285, "orders": 6.3284735679626465, "labor": 5.187814235687256, "nose": 5.777198314666748, "afraid": 7.591315269470215, "identified": 6.067580223083496, "intelligence": 6.649389743804932, "calls": 5.995865345001221, "cancer": 4.795851230621338, "attacked": 7.715433597564697, "passing": 6.363095283508301, "stephen": 7.032035827636719, "positions": 6.225876331329346, "imperial": 7.068286895751953, "grey": 6.719016075134277, "jason": 7.38586950302124, "39": 5.441106796264648, "sunday": 5.8184590339660645, "48": 5.265686511993408, "swedish": 7.415869235992432, "avoid": 5.163801193237305, "extra": 5.045891761779785, "uncle": 7.4942450523376465, "message": 5.568401336669922, "covers": 5.658905982971191, "allows": 4.90826416015625, "surprise": 6.8353776931762695, "materials": 5.076421737670898, "fame": 6.639049053192139, "hunter": 7.319525718688965, "##ji": 7.248684883117676, "1930": 7.552641868591309, "citizens": 6.140942573547363, "figures": 6.110113143920898, "davis": 7.128210544586182, "environmental": 5.961958408355713, "confirmed": 6.532932281494141, "shit": 8.47125244140625, "titles": 6.777340412139893, "di": 4.099796772003174, "performing": 6.348119735717773, "difference": 4.757653713226318, "acts": 5.881397247314453, "attacks": 6.241728782653809, "##ov": 6.764125823974609, "existing": 5.5749125480651855, "votes": 5.591301441192627, "opportunity": 5.934918403625488, "nor": 5.907674789428711, "shop": 5.632936954498291, "entirely": 6.396513938903809, "trains": 7.427022457122803, "opposite": 5.911133766174316, "pakistan": 7.358517646789551, "##pa": 5.480515003204346, "develop": 5.073418140411377, "resulted": 7.192556381225586, "representatives": 6.50253438949585, "actions": 6.075864315032959, "reality": 6.184536457061768, "pressed": 7.5654401779174805, "##ish": 5.957313060760498, "barely": 7.525426387786865, "wine": 5.914940357208252, "conversation": 7.036656856536865, "faculty": 7.1546406745910645, "northwest": 6.381500720977783, "ends": 5.758030891418457, "documentary": 7.7707061767578125, "nuclear": 6.320394992828369, "stock": 5.244243144989014, "grace": 6.990765571594238, "sets": 5.9182562828063965, "eat": 4.751626014709473, "alternative": 5.772680759429932, "##ps": 5.32315731048584, "bag": 5.795103549957275, "resulting": 5.766122817993164, "creating": 5.700944900512695, "surprised": 7.267792701721191, "cemetery": 7.595355987548828, "1919": 7.668124198913574, "drop": 5.34621524810791, "finding": 5.917625904083252, "sarah": 7.43734073638916, "cricket": 7.925191879272461, "streets": 7.004126071929932, "tradition": 6.6553473472595215, "ride": 6.255064964294434, "1933": 7.437725067138672, "exhibition": 8.02064323425293, "target": 5.86229133605957, "ear": 5.714879035949707, "explained": 6.676751136779785, "rain": 5.642943859100342, "composer": 7.774197101593018, "injury": 5.233946323394775, "apartment": 6.740789890289307, "municipal": 7.052739143371582, "educational": 6.196793556213379, "occupied": 7.211837291717529, "netherlands": 7.168195724487305, "clean": 5.066685199737549, "billion": 5.51057243347168, "constitution": 5.8516926765441895, "learn": 4.363500118255615, "1914": 7.6068949699401855, "maximum": 4.990515232086182, "classical": 6.70802640914917, "francis": 7.463217735290527, "lose": 5.669144630432129, "opposition": 7.590643405914307, "jose": 7.412116527557373, "ontario": 6.906887531280518, "bear": 6.298386573791504, "core": 5.5943989753723145, "hills": 6.523569107055664, "rolled": 7.401127338409424, "ending": 6.469889163970947, "drawn": 6.565648555755615, "permanent": 5.839649200439453, "fun": 5.453630447387695, "##tes": 5.042593002319336, "##lla": 6.126185417175293, "lewis": 6.969728946685791, "sites": 5.824221611022949, "chamber": 6.769331455230713, "ryan": 7.187307357788086, "##way": 6.427653789520264, "scoring": 7.54855489730835, "height": 5.278044700622559, "1934": 7.818752765655518, "##house": 6.951958179473877, "lyrics": 6.637666702270508, "staring": 9.022866249084473, "55": 5.365623474121094, "officials": 6.63628625869751, "1917": 7.641860008239746, "snow": 5.841361045837402, "oldest": 5.741123676300049, "##tic": 4.873440742492676, "orange": 5.73225212097168, "##ger": 5.7953267097473145, "qualified": 6.299801826477051, "interior": 6.238827705383301, "apparently": 7.061273574829102, "succeeded": 8.100872039794922, "thousand": 6.417835235595703, "dinner": 6.53901481628418, "lights": 6.488083839416504, "existence": 6.715183734893799, "fans": 6.065288066864014, "heavily": 6.937290191650391, "41": 5.73392915725708, "greatest": 6.0240678787231445, "conservative": 7.252349853515625, "send": 5.30947732925415, "bowl": 5.658905982971191, "plus": 4.993762493133545, "enter": 4.832309722900391, "catch": 6.217221260070801, "##un": 6.094044208526611, "economy": 5.85004186630249, "duty": 6.02922248840332, "1929": 7.640917778015137, "speech": 5.928356170654297, "authorities": 7.162051200866699, "princess": 7.137701988220215, "performances": 7.695096492767334, "versions": 6.228912353515625, "shall": 6.0124969482421875, "graduate": 6.109400272369385, "pictures": 6.001332759857178, "effective": 4.920854568481445, "remembered": 7.865976333618164, "poetry": 7.2603631019592285, "desk": 7.042592525482178, "crossed": 7.733348369598389, "starring": 7.011877536773682, "starts": 5.513345241546631, "passenger": 6.709323883056641, "sharp": 6.256951332092285, "##ant": 5.445735931396484, "acres": 6.3583831787109375, "ass": 6.361652851104736, "weather": 4.568415641784668, "falling": 6.587247848510742, "rank": 6.50775146484375, "fund": 6.171127796173096, "supporting": 6.433548927307129, "check": 4.071151256561279, "adult": 5.2775349617004395, "publishing": 7.327237606048584, "heads": 6.435028076171875, "cm": 5.383345127105713, "southeast": 6.404960632324219, "lane": 7.085835933685303, "##burg": 6.876504421234131, "application": 4.765496253967285, "bc": 6.236513137817383, "##ura": 6.266256332397461, "les": 7.0027570724487305, "condition": 4.473024368286133, "transfer": 5.271417140960693, "prevent": 4.848219394683838, "display": 5.610742568969727, "ex": 4.22568941116333, "regions": 5.827442169189453, "earl": 7.836058139801025, "federation": 7.604848861694336, "cool": 5.261818885803223, "relatively": 5.56860876083374, "answered": 6.4975690841674805, "besides": 6.82512092590332, "1928": 7.966385364532471, "obtained": 6.212526321411133, "portion": 5.447152137756348, "##town": 6.822417259216309, "mix": 5.37554407119751, "##ding": 6.058347702026367, "reaction": 5.449517726898193, "liked": 7.709112167358398, "dean": 7.419447422027588, "express": 5.915443420410156, "peak": 6.097961902618408, "1932": 7.8495988845825195, "##tte": 6.635769367218018, "counter": 5.660724639892578, "religion": 6.53441047668457, "chain": 5.695242881774902, "rare": 5.228236198425293, "miller": 7.134291648864746, "convention": 6.646859645843506, "aid": 5.793209552764893, "lie": 6.164651393890381, "vehicles": 5.871959209442139, "mobile": 5.425136566162109, "perform": 5.391306400299072, "squad": 8.000203132629395, "wonder": 6.5746049880981445, "lying": 6.890523910522461, "crazy": 7.208470821380615, "sword": 7.809235572814941, "##ping": 6.440896511077881, "attempted": 7.562606334686279, "centuries": 6.481563091278076, "weren": 7.816224575042725, "philosophy": 6.704513072967529, "category": 5.6417951583862305, "##ize": 5.24847412109375, "anna": 7.333796977996826, "interested": 6.044084072113037, "47": 5.658874034881592, "sweden": 7.345292091369629, "wolf": 7.072812080383301, "frequently": 5.501523494720459, "abandoned": 7.663537979125977, "kg": 6.141993999481201, "literary": 7.050909996032715, "alliance": 7.249639511108398, "task": 6.034970283508301, "entitled": 6.6547322273254395, "##ay": 6.489050388336182, "threw": 8.379459381103516, "promotion": 7.180896282196045, "factory": 6.463703632354736, "tiny": 5.96945333480835, "soccer": 7.269740104675293, "visited": 7.1777801513671875, "matt": 6.811161518096924, "fm": 7.031523704528809, "achieved": 6.64572811126709, "52": 5.662057876586914, "defence": 8.104982376098633, "internal": 5.252938270568848, "persian": 7.512505531311035, "43": 5.616540431976318, "methods": 5.505328178405762, "##ging": 6.348119735717773, "arrested": 7.367432594299316, "otherwise": 5.7924675941467285, "cambridge": 7.204050064086914, "programming": 6.6259942054748535, "villages": 7.591091156005859, "elementary": 6.930325031280518, "districts": 7.048824310302734, "rooms": 6.455755233764648, "criminal": 5.893547058105469, "conflict": 6.689944267272949, "worry": 6.487043380737305, "trained": 6.507978916168213, "1931": 8.00934886932373, "attempts": 7.006495475769043, "waited": 8.537105560302734, "signal": 6.185634613037109, "bird": 6.125098705291748, "truck": 6.1788458824157715, "subsequent": 6.785513877868652, "programme": 7.720264434814453, "##ol": 5.368167400360107, "ad": 4.553042888641357, "49": 5.6485466957092285, "communist": 7.676871299743652, "details": 5.104776382446289, "faith": 6.860842704772949, "sector": 6.628557205200195, "patrick": 7.2579522132873535, "carrying": 6.501102447509766, "laugh": 7.834056854248047, "##ss": 6.2193779945373535, "controlled": 6.001013278961182, "korean": 7.326206207275391, "showing": 5.873766899108887, "origin": 4.93973445892334, "fuel": 5.556851863861084, "evil": 7.022603511810303, "1927": 8.029631614685059, "##ent": 5.331586837768555, "brief": 6.195683002471924, "identity": 6.320898056030273, "darkness": 7.821569442749023, "address": 4.88595724105835, "pool": 6.024909496307373, "missed": 7.026671409606934, "publication": 6.623522758483887, "web": 4.724156379699707, "planet": 5.943592071533203, "ian": 7.913374423980713, "anne": 7.047913074493408, "wings": 6.937290191650391, "invited": 7.689148902893066, "##tt": 6.936824321746826, "briefly": 7.450098037719727, "standards": 5.6270432472229, "kissed": 9.79348087310791, "##be": 5.984973907470703, "ideas": 5.877918243408203, "climate": 5.492281436920166, "causing": 5.381917476654053, "walter": 7.646111011505127, "worse": 5.860464096069336, "albert": 7.416433334350586, "articles": 6.020242691040039, "winners": 7.750538349151611, "desire": 6.609156608581543, "aged": 6.4458723068237305, "northeast": 6.566210746765137, "dangerous": 6.023226737976074, "gate": 6.942429065704346, "doubt": 6.802572727203369, "1922": 7.980172157287598, "wooden": 7.046612739562988, "multi": 5.030874252319336, "##ky": 6.868860721588135, "poet": 7.471530437469482, "rising": 6.572338104248047, "funding": 6.869948863983154, "46": 5.576136112213135, "communications": 6.594994068145752, "communication": 5.937787055969238, "violence": 6.894980430603027, "copies": 6.544269561767578, "prepared": 5.894614219665527, "ford": 6.420471668243408, "investigation": 6.842557430267334, "skills": 5.455455303192139, "1924": 7.990471363067627, "pulling": 7.162197113037109, "electronic": 5.891416072845459, "##ak": 6.248667240142822, "##ial": 5.5763750076293945, "##han": 6.769134521484375, "containing": 5.528378009796143, "ultimately": 6.610584259033203, "offices": 6.255654335021973, "singing": 7.142839431762695, "understanding": 5.516350746154785, "restaurant": 6.181796550750732, "tomorrow": 7.276912689208984, "fashion": 6.325183868408203, "christ": 6.9417266845703125, "ward": 7.530683994293213, "da": 5.881843090057373, "pope": 7.688654899597168, "stands": 5.8074846267700195, "5th": 6.915740489959717, "flow": 5.134899616241455, "studios": 7.190753936767578, "aired": 7.376789569854736, "commissioned": 7.842085838317871, "contained": 6.274087905883789, "exist": 6.006279468536377, "fresh": 5.19366455078125, "americans": 5.576405048370361, "##per": 5.501523494720459, "wrestling": 8.016179084777832, "approved": 5.579096794128418, "kid": 6.8783698081970215, "employed": 6.306412696838379, "respect": 6.326890468597412, "suit": 6.553908824920654, "1925": 7.983482837677002, "angel": 7.318672180175781, "asking": 6.466246128082275, "increasing": 5.834764003753662, "frame": 6.032799243927002, "angry": 7.7951273918151855, "selling": 5.9289937019348145, "1950s": 7.164095401763916, "thin": 5.468161106109619, "finds": 6.923752784729004, "##nd": 6.00361967086792, "temperature": 4.283444404602051, "statement": 5.56695032119751, "ali": 6.772388935089111, "explain": 5.8605828285217285, "inhabitants": 7.490389347076416, "towns": 6.37119722366333, "extensive": 6.378098964691162, "narrow": 6.3156914710998535, "51": 5.752279758453369, "jane": 7.256348133087158, "flowers": 5.937272548675537, "images": 5.385983467102051, "promise": 7.119227409362793, "somewhere": 6.5670952796936035, "object": 5.40093469619751, "fly": 6.07021951675415, "closely": 6.154323101043701, "##ls": 5.109091281890869, "1912": 7.695593357086182, "bureau": 5.705420970916748, "cape": 6.92582368850708, "1926": 8.019954681396484, "weekly": 6.313754081726074, "presidential": 6.597727298736572, "legislative": 6.95349645614624, "1921": 7.9654083251953125, "##ai": 6.796078205108643, "##au": 6.476921081542969, "launch": 6.34225606918335, "founding": 7.2025299072265625, "##ny": 6.193853378295898, "978": 8.782341003417969, "##ring": 5.869233131408691, "artillery": 8.760465621948242, "strike": 6.923293590545654, "un": 3.904137134552002, "institutions": 6.538233280181885, "roll": 6.016200065612793, "writers": 7.049214839935303, "landing": 7.221541881561279, "chose": 7.120205879211426, "kevin": 7.2190680503845215, "anymore": 7.459086894989014, "pp": 6.238132953643799, "##ut": 5.8767476081848145, "attorney": 6.223591327667236, "fit": 5.413672924041748, "dan": 6.426884174346924, "billboard": 7.47971248626709, "receiving": 6.175631999969482, "agricultural": 6.832541465759277, "breaking": 6.299371242523193, "sought": 7.224331855773926, "dave": 7.507960319519043, "admitted": 6.99248743057251, "lands": 7.028201103210449, "mexican": 6.566050052642822, "##bury": 7.394481182098389, "charlie": 7.616038799285889, "specifically": 5.632810592651367, "hole": 6.158698081970215, "iv": 6.05159854888916, "howard": 7.271853923797607, "credit": 4.585279941558838, "moscow": 8.191773414611816, "roads": 6.828040599822998, "accident": 6.441960334777832, "1923": 8.074738502502441, "proved": 7.456538200378418, "wear": 5.569824695587158, "struck": 7.4691481590271, "hey": 6.508434295654297, "guards": 8.093811988830566, "stuff": 6.212526321411133, "slid": 9.830636978149414, "expansion": 6.58708381652832, "1915": 7.9371514320373535, "cat": 5.010550498962402, "anthony": 7.372640132904053, "##kin": 6.593505859375, "melbourne": 7.925191879272461, "opposed": 6.5979766845703125, "sub": 4.531420707702637, "southwest": 6.344442844390869, "architect": 7.530262470245361, "failure": 5.667344093322754, "plane": 6.342191696166992, "1916": 7.945736408233643, "##ron": 6.108687877655029, "map": 5.195193290710449, "camera": 6.328030109405518, "tank": 6.157629489898682, "listen": 6.5320000648498535, "regarding": 5.9432902336120605, "wet": 5.818497657775879, "introduction": 5.679953098297119, "metropolitan": 6.338856220245361, "link": 5.110496520996094, "ep": 5.110889911651611, "fighter": 7.876945972442627, "inch": 5.2582268714904785, "grown": 5.896586894989014, "gene": 5.948823928833008, "anger": 7.567625999450684, "fixed": 5.751212120056152, "buy": 4.880311965942383, "dvd": 6.728519439697266, "khan": 8.081665992736816, "domestic": 5.867632865905762, "worldwide": 5.907466888427734, "chapel": 8.074012756347656, "mill": 5.660887241363525, "functions": 5.288539886474609, "examples": 4.966610908508301, "##head": 6.599803447723389, "developing": 5.798566818237305, "1910": 7.633646011352539, "turkey": 6.222793102264404, "hits": 6.776744842529297, "pocket": 6.597064018249512, "antonio": 7.217679500579834, "papers": 6.974674224853516, "grow": 4.920652866363525, "unless": 5.397157192230225, "circuit": 6.181030750274658, "18th": 6.818065166473389, "concerned": 6.40564489364624, "attached": 5.810047149658203, "journalist": 7.846702575683594, "selection": 5.850827693939209, "journey": 6.457412242889404, "converted": 6.493973255157471, "provincial": 8.071836471557617, "painted": 7.125113487243652, "hearing": 6.051454544067383, "aren": 5.830826282501221, "bands": 6.852781772613525, "negative": 5.472567558288574, "aside": 6.529207706451416, "wondered": 8.024090766906738, "knight": 7.583281993865967, "lap": 6.974795341491699, "survey": 5.826252460479736, "ma": 5.576016426086426, "##ow": 6.439691543579102, "noise": 6.81961727142334, "billy": 7.648717403411865, "##ium": 5.985288619995117, "shooting": 6.789927005767822, "guide": 4.87163782119751, "bedroom": 6.918480396270752, "priest": 8.036602020263672, "resistance": 6.08159065246582, "motor": 5.449491500854492, "homes": 5.431757926940918, "sounded": 8.957536697387695, "giant": 6.313129901885986, "##mer": 5.631073951721191, "150": 5.240158557891846, "scenes": 7.269740104675293, "equal": 5.070333957672119, "comic": 7.162051200866699, "patients": 4.6427459716796875, "hidden": 6.565487861633301, "solid": 5.4232892990112305, "actual": 5.361615180969238, "bringing": 6.630098342895508, "afternoon": 6.648516654968262, "touched": 8.105731964111328, "funds": 5.978433132171631, "wedding": 6.201581954956055, "consisted": 7.764027118682861, "marie": 7.265849590301514, "canal": 6.48274564743042, "sr": 6.832226753234863, "kim": 7.167169094085693, "treaty": 6.944890975952148, "turkish": 7.785287380218506, "recognition": 6.89185905456543, "residence": 6.757485866546631, "cathedral": 8.08790397644043, "broad": 5.881397247314453, "knees": 7.280518531799316, "incident": 6.8034892082214355, "shaped": 5.79744815826416, "fired": 7.2980756759643555, "norwegian": 7.6963396072387695, "handle": 6.022340297698975, "cheek": 7.836630821228027, "contest": 7.474117279052734, "represent": 5.920529365539551, "##pe": 5.613559722900391, "representing": 6.887526988983154, "beauty": 6.1255645751953125, "##sen": 6.5430121421813965, "birds": 6.0624189376831055, "advantage": 5.936373233795166, "emergency": 5.806769847869873, "wrapped": 7.2660112380981445, "drawing": 6.634305477142334, "notice": 5.405708312988281, "pink": 5.987359046936035, "broadcasting": 7.971287727355957, "##ong": 7.158847808837891, "somehow": 7.892265796661377, "bachelor": 5.972822666168213, "seventh": 7.151172161102295, "collected": 5.8610992431640625, "registered": 5.4686174392700195, "establishment": 7.226040840148926, "alan": 7.314416885375977, "assumed": 7.159865856170654, "chemical": 4.823238372802734, "personnel": 6.588315486907959, "roger": 7.681519508361816, "retirement": 6.004444599151611, "jeff": 7.2283759117126465, "portuguese": 7.326377868652344, "wore": 7.784743309020996, "tied": 6.958481311798096, "device": 4.9392290115356445, "threat": 6.802674770355225, "progress": 6.338280200958252, "advance": 6.180265426635742, "##ised": 6.9597907066345215, "banks": 6.183055877685547, "hired": 6.964807033538818, "manchester": 7.907209873199463, "nfl": 6.510712623596191, "teachers": 6.390293121337891, "structures": 5.783572196960449, "forever": 6.904292106628418, "##bo": 5.1701884269714355, "tennis": 7.122867107391357, "helping": 6.1506028175354, "saturday": 5.989930152893066, "sale": 5.3051862716674805, "applications": 5.396084308624268, "junction": 7.173787593841553, "hip": 5.873324871063232, "incorporated": 6.5195722579956055, "neighborhood": 6.628471851348877, "dressed": 7.940958023071289, "ceremony": 6.93880558013916, "##ds": 5.87416934967041, "influenced": 6.855032444000244, "hers": 8.028244018554688, "visual": 5.878443241119385, "stairs": 7.6780924797058105, "decades": 6.263580322265625, "inner": 5.7469162940979, "kansas": 6.558524131774902, "hung": 8.069304466247559, "hoped": 8.404403686523438, "gain": 5.667998313903809, "scheduled": 6.510180473327637, "downtown": 6.331901550292969, "engaged": 7.000521183013916, "austria": 7.3419694900512695, "clock": 6.564123153686523, "norway": 7.367074489593506, "certainly": 6.374044895172119, "pale": 6.518575191497803, "protected": 6.3821024894714355, "1913": 7.717973232269287, "victor": 7.949896335601807, "employees": 5.035037517547607, "plate": 5.58549690246582, "putting": 6.351550579071045, "surrounded": 6.705344200134277, "##ists": 6.316129684448242, "finishing": 7.476511478424072, "blues": 7.2637481689453125, "tropical": 6.203593730926514, "##ries": 5.827364921569824, "minnesota": 6.388676643371582, "consider": 5.191893577575684, "philippines": 7.210611820220947, "accept": 6.221311569213867, "54": 5.651440620422363, "retrieved": 8.046794891357422, "1900": 7.2909159660339355, "concern": 6.349671840667725, "anderson": 7.470338344573975, "properties": 5.313166618347168, "institution": 6.2985711097717285, "gordon": 7.7526421546936035, "successfully": 6.571287155151367, "vietnam": 6.940907955169678, "##dy": 6.466391563415527, "backing": 7.718227386474609, "outstanding": 6.782016754150391, "muslim": 7.50200080871582, "crossing": 7.249798774719238, "folk": 7.351794719696045, "producing": 5.961211681365967, "usual": 6.229485988616943, "demand": 5.891538619995117, "occurs": 4.7023820877075195, "observed": 6.49786901473999, "lawyer": 6.741939067840576, "educated": 7.454387187957764, "##ana": 6.514750957489014, "kelly": 7.317479133605957, "string": 6.237496376037598, "pleasure": 7.239029884338379, "budget": 5.744121551513672, "items": 5.205901145935059, "quietly": 8.539416313171387, "colorado": 6.1520891189575195, "philip": 7.782570838928223, "typical": 5.106847286224365, "##worth": 7.364035606384277, "derived": 5.434319972991943, "600": 5.585617542266846, "survived": 7.681519508361816, "asks": 7.335183143615723, "mental": 5.682407855987549, "##ide": 5.75192403793335, "56": 5.728906154632568, "jake": 8.271662712097168, "jews": 7.6194891929626465, "distinguished": 6.955511093139648, "ltd": 7.1901535987854, "1911": 7.967364311218262, "sri": 7.7951273918151855, "extremely": 5.664534091949463, "53": 5.752208709716797, "athletic": 7.090577602386475, "loud": 7.062989234924316, "thousands": 5.648674964904785, "worried": 7.55891227722168, "shadow": 7.323460102081299, "transportation": 6.0842180252075195, "horses": 6.649651527404785, "weapon": 7.207096576690674, "arena": 7.371021270751953, "importance": 6.214221000671387, "users": 5.196234703063965, "tim": 6.905983924865723, "objects": 5.926489353179932, "contributed": 7.291082382202148, "dragon": 6.966605186462402, "douglas": 7.452435493469238, "aware": 6.1971821784973145, "senator": 7.211071491241455, "johnny": 7.464598178863525, "jordan": 7.192406177520752, "sisters": 7.4954657554626465, "engines": 6.814555644989014, "flag": 6.236802101135254, "investment": 5.828863620758057, "samuel": 7.463020324707031, "shock": 6.58872652053833, "capable": 6.253711700439453, "clark": 7.1876068115234375, "row": 6.1529927253723145, "wheel": 6.1552815437316895, "refers": 5.023354530334473, "session": 6.462181568145752, "familiar": 6.1529927253723145, "biggest": 5.707121849060059, "wins": 7.2190680503845215, "hate": 7.249798774719238, "maintained": 6.672004699707031, "drove": 8.02340030670166, "hamilton": 7.341619968414307, "request": 5.598605155944824, "expressed": 6.375040531158447, "injured": 6.643380641937256, "underground": 6.94207763671875, "churches": 7.7195000648498535, "walker": 7.500362873077393, "wars": 6.722580909729004, "tunnel": 7.1823835372924805, "passes": 6.290302753448486, "stupid": 7.926130771636963, "agriculture": 6.60672664642334, "softly": 9.76747989654541, "cabinet": 6.980617523193359, "regarded": 6.877711296081543, "joining": 7.037686347961426, "indiana": 6.406124114990234, "##ea": 5.442647457122803, "##ms": 5.620591163635254, "push": 6.171885967254639, "dates": 5.855989456176758, "spend": 5.649928092956543, "behavior": 5.664273262023926, "woods": 7.178521156311035, "protein": 4.746193885803223, "gently": 6.536046981811523, "chase": 7.209846496582031, "morgan": 7.277567386627197, "mention": 6.904292106628418, "burning": 5.938129901885986, "wake": 6.764321804046631, "combination": 5.238027095794678, "occur": 4.645803928375244, "mirror": 7.096433162689209, "leads": 6.043035507202148, "jimmy": 7.7437310218811035, "indeed": 6.38036584854126, "impossible": 6.715464115142822, "singapore": 7.421524524688721, "paintings": 7.834914207458496, "covering": 6.238770008087158, "##nes": 6.9970526695251465, "soldier": 7.413615703582764, "locations": 5.465992450714111, "attendance": 7.382227897644043, "sell": 5.606639385223389, "historian": 8.145094871520996, "wisconsin": 6.439408302307129, "invasion": 7.401683330535889, "argued": 7.896208763122559, "painter": 7.960210800170898, "diego": 6.85675048828125, "changing": 5.81337308883667, "egypt": 6.753019332885742, "##don": 6.253770351409912, "experienced": 5.973666191101074, "inches": 4.919707775115967, "##ku": 6.863436222076416, "missouri": 6.429684638977051, "vol": 6.213034152984619, "grounds": 7.1901535987854, "spoken": 6.4029107093811035, "switzerland": 7.253627777099609, "##gan": 6.901590347290039, "reform": 7.068021774291992, "rolling": 6.777538776397705, "ha": 5.388406276702881, "forget": 6.634047508239746, "massive": 6.417281150817871, "resigned": 8.672163009643555, "burned": 6.914259910583496, "allen": 7.133583068847656, "tennessee": 6.331075191497803, "locked": 7.303101539611816, "values": 5.289144992828369, "improved": 6.647731304168701, "##mo": 5.1690545082092285, "wounded": 8.136170387268066, "universe": 6.608736991882324, "sick": 6.247439384460449, "dating": 6.661605358123779, "facing": 6.603217124938965, "pack": 6.122878074645996, "purchase": 5.110440254211426, "user": 5.116456508636475, "##pur": 8.207414627075195, "moments": 7.387695789337158, "##ul": 6.495170593261719, "merged": 7.986804485321045, "anniversary": 6.907905101776123, "1908": 8.081299781799316, "coal": 6.609576225280762, "brick": 6.983541488647461, "understood": 6.869840145111084, "causes": 4.171469688415527, "dynasty": 7.3581624031066895, "queensland": 8.007649421691895, "establish": 6.442812919616699, "stores": 5.628678798675537, "crisis": 6.935079574584961, "promote": 6.304059982299805, "hoping": 7.566969871520996, "views": 5.946788311004639, "cards": 5.832484245300293, "referee": 9.020057678222656, "extension": 6.115271091461182, "##si": 5.989614009857178, "raise": 6.021687030792236, "arizona": 6.145946025848389, "improve": 5.341197490692139, "colonial": 7.1203460693359375, "formal": 5.981653213500977, "charged": 5.878726005554199, "##rt": 6.3279032707214355, "palm": 6.552243232727051, "lucky": 7.138984203338623, "hide": 6.663375377655029, "rescue": 7.246619701385498, "faces": 7.013510704040527, "95": 5.542600154876709, "feelings": 6.639567852020264, "candidates": 6.6972479820251465, "juan": 7.690880298614502, "##ell": 7.129339218139648, "goods": 5.784895896911621, "6th": 7.141124248504639, "courses": 6.054244518280029, "weekend": 6.295807361602783, "59": 5.7281413078308105, "luke": 7.403724193572998, "cash": 5.3620734214782715, "fallen": 7.3480987548828125, "##om": 5.221301078796387, "delivered": 6.425137519836426, "affected": 5.5714287757873535, "installed": 5.648257732391357, "carefully": 6.326131343841553, "tries": 7.378961086273193, "swiss": 7.397983074188232, "hollywood": 6.544426918029785, "costs": 4.407801628112793, "lincoln": 6.590619087219238, "responsibility": 6.333810806274414, "##he": 5.773880958557129, "shore": 6.91471529006958, "file": 4.550533771514893, "proper": 5.4478349685668945, "normally": 5.244243144989014, "maryland": 6.482597827911377, "assistance": 6.018056869506836, "jump": 6.492180347442627, "constant": 5.877554893493652, "offering": 6.036436557769775, "friendly": 6.087001323699951, "waters": 6.484891891479492, "persons": 6.067580223083496, "realize": 6.805120944976807, "contain": 4.913577079772949, "trophy": 8.143537521362305, "800": 5.192158222198486, "partnership": 6.791637897491455, "factor": 5.477020263671875, "58": 5.865915775299072, "musicians": 7.743991851806641, "cry": 7.253148078918457, "bound": 6.513530254364014, "oregon": 6.397599697113037, "indicated": 6.40304708480835, "hero": 6.880018711090088, "houston": 6.542697906494141, "medium": 5.166592597961426, "##ure": 5.433154582977295, "consisting": 6.259609222412109, "somewhat": 6.341292381286621, "##ara": 6.821897983551025, "57": 5.827633857727051, "cycle": 5.345978260040283, "##che": 6.091341018676758, "beer": 6.341742038726807, "moore": 7.435997009277344, "frederick": 7.790195465087891, "gotten": 7.517279148101807, "eleven": 7.62225866317749, "worst": 6.522953033447266, "weak": 6.373448371887207, "approached": 8.471792221069336, "arranged": 6.999900817871094, "chin": 7.17172384262085, "loan": 5.556705474853516, "universal": 6.320520877838135, "bond": 5.955434799194336, "fifteen": 7.611227512359619, "pattern": 5.9023637771606445, "disappeared": 8.309989929199219, "##ney": 7.2020745277404785, "translated": 7.287934303283691, "##zed": 6.274507999420166, "lip": 5.911593437194824, "arab": 7.373721122741699, "capture": 6.825641632080078, "interests": 6.7597270011901855, "insurance": 4.726975440979004, "##chi": 6.524185657501221, "shifted": 8.236884117126465, "cave": 7.259237289428711, "prix": 9.362343788146973, "warning": 6.44451904296875, "sections": 6.279262542724609, "courts": 6.529439926147461, "coat": 6.07867431640625, "plot": 6.823456287384033, "smell": 6.202587127685547, "feed": 5.741440296173096, "golf": 6.331329345703125, "favorite": 5.570062160491943, "maintain": 5.497374534606934, "knife": 6.9715352058410645, "vs": 5.644765377044678, "voted": 7.331029891967773, "degrees": 4.848421096801758, "finance": 6.396446228027344, "quebec": 7.648480415344238, "opinion": 6.360867023468018, "translation": 6.216371059417725, "manner": 6.126858234405518, "ruled": 7.064972877502441, "operate": 6.289144039154053, "productions": 7.9709601402282715, "choose": 4.646817207336426, "musician": 7.28892707824707, "discovery": 6.5895490646362305, "confused": 6.403456687927246, "tired": 6.755638599395752, "separated": 6.471496105194092, "stream": 6.128880500793457, "techniques": 6.128828525543213, "committed": 6.523723125457764, "attend": 6.5722575187683105, "ranking": 7.010748863220215, "kings": 7.064575672149658, "throw": 6.690125942230225, "passengers": 6.8445725440979, "measure": 5.052149772644043, "horror": 7.508579254150391, "fan": 5.906718730926514, "mining": 7.09575080871582, "sand": 5.807823181152344, "danger": 6.855139255523682, "salt": 4.953434944152832, "calm": 7.071878910064697, "decade": 6.494197845458984, "dam": 7.241237640380859, "require": 4.861692905426025, "runner": 7.6289825439453125, "##ik": 7.370481967926025, "rush": 7.088678359985352, "associate": 6.276250839233398, "greece": 6.807880878448486, "##ker": 6.9012532234191895, "rivers": 6.526268482208252, "consecutive": 7.063518047332764, "matthew": 7.461445331573486, "##ski": 7.840934753417969, "sighed": 11.657712936401367, "sq": 5.905804634094238, "documents": 5.656411170959473, "steam": 6.410104274749756, "edited": 7.413803577423096, "closing": 6.3801655769348145, "tie": 6.700000762939453, "accused": 7.515408515930176, "1905": 8.0606689453125, "##ini": 6.1210222244262695, "islamic": 7.723583221435547, "distributed": 6.611929416656494, "directors": 7.011124610900879, "organisation": 7.538303852081299, "bruce": 7.386234760284424, "7th": 7.216446876525879, "breathing": 5.932313919067383, "mad": 7.067358016967773, "lit": 6.5118536949157715, "arrival": 6.82512092590332, "concrete": 6.003986358642578, "taste": 5.520861625671387, "08": 5.87252140045166, "composition": 6.360540390014648, "shaking": 7.751326560974121, "faster": 5.762302398681641, "amateur": 8.02340030670166, "adjacent": 6.6830549240112305, "stating": 7.758450984954834, "1906": 8.108734130859375, "twin": 6.794057369232178, "flew": 8.296294212341309, "##ran": 7.044665336608887, "tokyo": 7.635751724243164, "publications": 7.459086894989014, "##tone": 6.40256929397583, "obviously": 6.791637897491455, "ridge": 6.838749885559082, "storage": 5.562168121337891, "1907": 8.153707504272461, "carl": 7.327754020690918, "pages": 5.697499752044678, "concluded": 7.728710651397705, "desert": 6.448298454284668, "driven": 6.628557205200195, "universities": 6.792947769165039, "ages": 5.744333744049072, "terminal": 6.417904376983643, "sequence": 6.278599262237549, "borough": 7.506518840789795, "250": 5.525421619415283, "constituency": 9.856197357177734, "creative": 6.495769500732422, "cousin": 7.550058841705322, "economics": 7.170693397521973, "dreams": 6.968045711517334, "margaret": 7.942229747772217, "notably": 7.412303924560547, "reduce": 4.949549198150635, "montreal": 7.947014331817627, "mode": 5.78460168838501, "17th": 7.012003421783447, "ears": 6.47699499130249, "saved": 6.757096767425537, "jan": 6.021873474121094, "vocal": 7.194061279296875, "##ica": 5.6851348876953125, "1909": 8.064618110656738, "andy": 7.634581565856934, "##jo": 6.564684867858887, "riding": 7.077223777770996, "roughly": 5.766014575958252, "threatened": 7.630612373352051, "##ise": 6.077391624450684, "meters": 6.168154239654541, "meanwhile": 7.2751145362854, "landed": 7.5971574783325195, "compete": 6.853960037231445, "repeated": 6.872457027435303, "grass": 6.175468444824219, "czech": 7.729996681213379, "regularly": 6.202699184417725, "charges": 5.866394519805908, "tea": 5.368410110473633, "sudden": 6.299432277679443, "appeal": 6.85160493850708, "##ung": 7.966385364532471, "solution": 5.180408954620361, "describes": 5.921583652496338, "pierre": 8.373563766479492, "classification": 6.4495849609375, "glad": 7.524168491363525, "parking": 6.372189521789551, "##ning": 6.1952948570251465, "belt": 6.623522758483887, "physics": 6.741556167602539, "99": 5.401812553405762, "rachel": 8.06894302368164, "add": 4.09999418258667, "hungarian": 8.281888961791992, "participate": 6.741077423095703, "expedition": 7.923628807067871, "damaged": 6.165404796600342, "gift": 6.227421760559082, "childhood": 6.5085859298706055, "85": 5.57398796081543, "fifty": 7.3502092361450195, "##red": 6.481046199798584, "mathematics": 6.937523365020752, "jumped": 8.185665130615234, "letting": 7.540643692016602, "defensive": 7.725118637084961, "mph": 6.21399450302124, "##ux": 7.324660301208496, "##gh": 6.482450008392334, "testing": 5.508840084075928, "##hip": 6.716864585876465, "hundreds": 6.158698081970215, "shoot": 7.251073360443115, "owners": 5.9359450340271, "matters": 6.671200752258301, "smoke": 6.127739429473877, "israeli": 8.14978313446045, "kentucky": 6.545449733734131, "dancing": 7.405582904815674, "mounted": 7.136279582977295, "grandfather": 7.62387752532959, "emma": 8.067138671875, "designs": 6.600551605224609, "profit": 5.85685920715332, "argentina": 7.539366722106934, "##gs": 6.362308502197266, "truly": 6.445516109466553, "li": 5.56979513168335, "lawrence": 7.432550430297852, "cole": 7.596031188964844, "begun": 7.376247406005859, "detroit": 7.097937107086182, "willing": 6.879578590393066, "branches": 6.268760681152344, "smiling": 8.882268905639648, "decide": 5.907508373260498, "miami": 6.692859172821045, "enjoyed": 7.1638031005859375, "recordings": 8.00934886932373, "##dale": 7.286446571350098, "poverty": 7.075216293334961, "ethnic": 6.973828315734863, "gay": 7.1396965980529785, "##bi": 6.16734504699707, "gary": 7.641860008239746, "arabic": 6.681340217590332, "09": 6.093793869018555, "accompanied": 6.662136077880859, "##one": 5.882410526275635, "##ons": 5.598452568054199, "fishing": 6.342384338378906, "determine": 4.835437297821045, "residential": 6.225247859954834, "acid": 4.863082408905029, "##ary": 5.376986980438232, "alice": 7.833200454711914, "returns": 5.99813985824585, "starred": 7.6037139892578125, "mail": 5.083658695220947, "##ang": 6.8915252685546875, "jonathan": 7.795951843261719, "strategy": 6.288169860839844, "##ue": 6.517426490783691, "net": 5.033335208892822, "forty": 7.5181121826171875, "cook": 5.2103657722473145, "businesses": 5.728732585906982, "equivalent": 5.6188130378723145, "commonwealth": 7.41342830657959, "distinct": 6.10528564453125, "ill": 6.252477645874023, "##cy": 5.61374568939209, "seriously": 7.096296787261963, "##ors": 6.13900089263916, "##ped": 6.368950843811035, "shift": 6.450515270233154, "harris": 7.44196081161499, "replace": 5.641508102416992, "rio": 7.261168003082275, "imagine": 6.736301898956299, "formula": 5.489073753356934, "ensure": 5.3952860832214355, "##ber": 6.101541519165039, "additionally": 6.820135116577148, "scheme": 7.103423595428467, "conservation": 7.069084167480469, "occasionally": 6.293663024902344, "purposes": 5.53764533996582, "feels": 6.551688194274902, "favor": 7.028966903686523, "##and": 6.573552131652832, "##ore": 6.479571342468262, "1930s": 7.573770999908447, "contrast": 6.115988254547119, "hanging": 7.187457084655762, "hunt": 7.030372142791748, "movies": 6.180647850036621, "1904": 8.1227388381958, "instruments": 6.793956279754639, "victims": 7.195417404174805, "danish": 7.852503776550293, "christopher": 7.297741413116455, "busy": 6.9939656257629395, "demon": 8.336540222167969, "sugar": 4.740933418273926, "earliest": 6.643380641937256, "colony": 7.002384185791016, "studying": 6.935195446014404, "balance": 5.235559463500977, "duties": 6.445516109466553, "##ks": 6.405919075012207, "belgium": 7.442347049713135, "slipped": 8.724343299865723, "carter": 7.544270992279053, "05": 6.0016984939575195, "visible": 6.025658130645752, "stages": 6.231727123260498, "iraq": 7.355681419372559, "fifa": 8.780867576599121, "##im": 5.759859085083008, "commune": 9.75765609741211, "forming": 6.176339149475098, "zero": 6.030162334442139, "07": 6.0480499267578125, "continuing": 6.699173927307129, "talked": 7.735933780670166, "counties": 6.270553112030029, "legend": 6.8889689445495605, "bathroom": 6.651050567626953, "option": 5.043574333190918, "tail": 6.275048732757568, "clay": 6.7198591232299805, "daughters": 7.7954020500183105, "afterwards": 7.900472640991211, "severe": 5.011687278747559, "jaw": 6.79264497756958, "visitors": 6.356947422027588, "##ded": 6.769036293029785, "devices": 5.442412376403809, "aviation": 7.40614128112793, "russell": 7.531316757202148, "kate": 7.545982360839844, "##vi": 5.8563055992126465, "entering": 6.472081184387207, "subjects": 6.892972469329834, "##ino": 6.220970153808594, "temporary": 6.1738386154174805, "swimming": 6.607228755950928, "forth": 6.696606636047363, "smooth": 5.647006511688232, "ghost": 7.436956405639648, "audio": 6.172265529632568, "bush": 6.587247848510742, "operates": 6.522260665893555, "rocks": 6.196404457092285, "movements": 6.247147083282471, "signs": 5.175195217132568, "eddie": 8.076557159423828, "##tz": 6.96444845199585, "ann": 6.28786563873291, "voices": 7.851341247558594, "honorary": 9.13381576538086, "06": 6.052319526672363, "memories": 7.472325801849365, "dallas": 6.609744071960449, "pure": 5.849452972412109, "measures": 5.759787082672119, "racial": 7.332066535949707, "promised": 7.9624810218811035, "66": 5.8811540603637695, "harvard": 7.200709342956543, "ceo": 6.672451496124268, "16th": 6.967565059661865, "parliamentary": 8.412519454956055, "indicate": 5.776760101318359, "benefit": 5.352666854858398, "flesh": 6.903390884399414, "dublin": 8.004935264587402, "louisiana": 6.550105094909668, "1902": 8.086065292358398, "1901": 7.836916923522949, "patient": 4.971427917480469, "sleeping": 6.7928466796875, "1903": 8.085698127746582, "membership": 6.365394115447998, "coastal": 6.767953872680664, "medieval": 7.154930114746094, "wanting": 7.613744735717773, "element": 5.659230709075928, "scholars": 7.635517597198486, "rice": 6.025938987731934, "62": 5.8485894203186035, "limit": 5.374371528625488, "survive": 6.439125061035156, "makeup": 7.141266822814941, "rating": 5.699491024017334, "definitely": 6.41555118560791, "collaboration": 7.511263847351074, "obvious": 6.515285491943359, "##tan": 6.46704626083374, "boss": 7.187756538391113, "ms": 5.7116594314575195, "baron": 8.677459716796875, "birthday": 6.422001361846924, "linked": 5.88038444519043, "soil": 5.37113094329834, "diocese": 9.67333698272705, "##lan": 6.618005275726318, "ncaa": 7.660652160644531, "##mann": 8.168760299682617, "offensive": 7.465585708618164, "shell": 6.099422454833984, "shouldn": 6.9317145347595215, "waist": 7.427402496337891, "##tus": 6.175359725952148, "plain": 6.339432716369629, "ross": 7.334836483001709, "organ": 5.679191589355469, "resolution": 6.580295085906982, "manufacturing": 6.146209716796875, "adding": 5.656994342803955, "relative": 5.853818893432617, "kennedy": 7.071612358093262, "98": 6.0405144691467285, "whilst": 7.518320083618164, "moth": 8.432063102722168, "marketing": 6.030162334442139, "gardens": 7.05732536315918, "crash": 7.024635314941406, "72": 5.673414707183838, "heading": 7.029988765716553, "partners": 6.455036163330078, "credited": 7.332585334777832, "carlos": 8.363329887390137, "moves": 6.0339789390563965, "cable": 5.875296592712402, "##zi": 6.759434223175049, "marshall": 7.49791145324707, "##out": 6.1220011711120605, "depending": 4.34389591217041, "bottle": 6.139420509338379, "represents": 5.801854610443115, "rejected": 7.8084001541137695, "responded": 7.818471431732178, "existed": 7.366358757019043, "04": 5.960158824920654, "jobs": 5.398456573486328, "denmark": 7.513956069946289, "lock": 6.385451316833496, "##ating": 6.020848274230957, "treated": 5.668064117431641, "graham": 7.820441722869873, "routes": 7.126379489898682, "talent": 7.066562175750732, "commissioner": 7.9109039306640625, "drugs": 5.17136287689209, "secure": 6.042036056518555, "tests": 5.272275924682617, "reign": 7.553072929382324, "restored": 7.494041442871094, "photography": 7.508579254150391, "##gi": 6.2259907722473145, "contributions": 6.397464275360107, "oklahoma": 6.6136980056762695, "designer": 6.8477630615234375, "disc": 5.674798011779785, "grin": 8.892915725708008, "seattle": 6.725215911865234, "robin": 7.511470794677734, "paused": 10.27633285522461, "atlanta": 6.56428337097168, "unusual": 6.396785259246826, "##gate": 6.9021525382995605, "praised": 8.903677940368652, "las": 6.246738433837891, "laughing": 8.487587928771973, "satellite": 6.769824028015137, "hungary": 7.79677677154541, "visiting": 6.666658401489258, "##sky": 7.956007480621338, "interesting": 5.9732666015625, "factors": 4.782028675079346, "deck": 6.639567852020264, "poems": 7.706092357635498, "norman": 7.308658599853516, "##water": 6.526191234588623, "stuck": 6.980374336242676, "speaker": 6.886972904205322, "rifle": 7.844391345977783, "domain": 6.466755390167236, "premiered": 7.686927795410156, "##her": 5.840037822723389, "dc": 6.1986284255981445, "comics": 7.599639415740967, "actors": 6.925363063812256, "01": 5.618376731872559, "reputation": 6.903615951538086, "eliminated": 7.623645782470703, "8th": 7.331202507019043, "ceiling": 6.915626525878906, "prisoners": 8.023055076599121, "script": 6.9306721687316895, "##nce": 6.031197547912598, "leather": 6.864626884460449, "austin": 7.077358245849609, "mississippi": 6.531689167022705, "rapidly": 6.323858261108398, "admiral": 8.597135543823242, "parallel": 6.505706787109375, "charlotte": 7.194664001464844, "guilty": 7.405768871307373, "tools": 5.34821081161499, "gender": 6.201694011688232, "divisions": 7.280518531799316, "fruit": 5.4325852394104, "##bs": 5.447782516479492, "laboratory": 6.310574054718018, "nelson": 7.708608150482178, "fantasy": 7.353559494018555, "marry": 7.92269229888916, "rapid": 6.132468223571777, "aunt": 8.04221248626709, "tribe": 7.3465189933776855, "requirements": 4.968430995941162, "aspects": 6.281617641448975, "suicide": 7.187905788421631, "amongst": 7.418127536773682, "adams": 7.213064670562744, "bone": 5.086235046386719, "ukraine": 8.114766120910645, "abc": 6.701011657714844, "kick": 7.080175876617432, "sees": 7.186560153961182, "edinburgh": 8.511478424072266, "clothing": 6.286710262298584, "column": 5.957094669342041, "rough": 6.415274620056152, "gods": 7.35232400894165, "hunting": 6.6969733238220215, "broadway": 7.502615451812744, "gathered": 7.390807628631592, "concerns": 6.5670952796936035, "##ek": 7.557394981384277, "spending": 6.307032585144043, "ty": 6.1750335693359375, "12th": 7.266820430755615, "snapped": 9.309767723083496, "requires": 5.0807976722717285, "solar": 5.9270405769348145, "bones": 5.645597457885742, "cavalry": 8.780131340026855, "##tta": 7.283972263336182, "iowa": 6.751954078674316, "drinking": 5.852086067199707, "waste": 5.717421531677246, "index": 5.597506046295166, "franklin": 6.816928386688232, "charity": 7.540217876434326, "thompson": 7.903835773468018, "stewart": 7.773928165435791, "tip": 5.751995086669922, "flash": 6.297403335571289, "landscape": 6.678458213806152, "friday": 5.726300239562988, "enjoy": 5.467169761657715, "singh": 8.879827499389648, "poem": 7.180450439453125, "listening": 7.3760666847229, "##back": 6.602550029754639, "eighth": 7.368866443634033, "fred": 7.62225866317749, "differences": 5.7500386238098145, "adapted": 7.0304999351501465, "bomb": 7.3948493003845215, "ukrainian": 9.007051467895508, "surgery": 5.141916275024414, "corporate": 6.121588706970215, "masters": 7.361539840698242, "anywhere": 5.339522361755371, "##more": 7.070014953613281, "waves": 6.25872278213501, "odd": 7.106178283691406, "sean": 7.803956508636475, "portugal": 7.552210807800293, "orleans": 7.10163688659668, "dick": 7.782028675079346, "debate": 6.828458309173584, "kent": 7.8400726318359375, "eating": 5.2039642333984375, "puerto": 7.090577602386475, "cleared": 7.725887298583984, "96": 6.177809715270996, "expect": 5.187065124511719, "cinema": 8.028244018554688, "97": 6.082432746887207, "guitarist": 7.882625579833984, "blocks": 6.314003944396973, "electrical": 5.662350654602051, "agree": 6.208752632141113, "involving": 6.35825252532959, "depth": 5.984569549560547, "dying": 7.31136417388916, "panel": 5.896134376525879, "struggle": 7.222161293029785, "##ged": 6.597312927246094, "peninsula": 6.8803486824035645, "adults": 5.235750675201416, "novels": 7.677359580993652, "emerged": 7.350561618804932, "vienna": 8.234749794006348, "metro": 6.548840522766113, "debuted": 7.83519983291626, "shoes": 6.509192943572998, "tamil": 8.375524520874023, "songwriter": 7.123288154602051, "meets": 6.576796054840088, "prove": 6.5070695877075195, "beating": 7.568063735961914, "instance": 5.787069320678711, "heaven": 7.50940465927124, "scared": 8.360908508300781, "sending": 6.753310203552246, "marks": 6.346053600311279, "artistic": 7.5504889488220215, "passage": 6.717331886291504, "superior": 6.235877513885498, "03": 5.979058265686035, "significantly": 6.10270357131958, "shopping": 6.216597557067871, "##tive": 6.0119428634643555, "retained": 7.518528461456299, "##izing": 6.248082160949707, "malaysia": 7.762962341308594, "technique": 6.175196647644043, "cheeks": 7.934621810913086, "##ola": 6.571853160858154, "warren": 7.476511478424072, "maintenance": 5.788065433502197, "destroy": 7.055225849151611, "extreme": 6.087947368621826, "allied": 7.527736186981201, "120": 5.666329860687256, "appearing": 7.154061794281006, "##yn": 5.866554260253906, "fill": 5.354483604431152, "advice": 5.8975749015808105, "alabama": 6.470984935760498, "qualifying": 7.081117153167725, "policies": 6.149065971374512, "cleveland": 6.974674224853516, "hat": 6.1592864990234375, "battery": 5.859353542327881, "smart": 6.1309590339660645, "authors": 7.038201808929443, "10th": 7.01678466796875, "soundtrack": 7.740865230560303, "acted": 8.099381446838379, "dated": 7.252030372619629, "lb": 6.348701477050781, "glance": 7.641388893127441, "equipped": 7.018425464630127, "coalition": 8.12579345703125, "funny": 7.212143898010254, "outer": 5.79261589050293, "ambassador": 8.242453575134277, "roy": 7.846702575683594, "possibility": 6.936126232147217, "couples": 7.15957498550415, "campbell": 7.869225025177002, "dna": 5.409063816070557, "loose": 6.3395609855651855, "ethan": 8.42172908782959, "supplies": 6.145576477050781, "1898": 8.08790397644043, "gonna": 7.807565212249756, "88": 5.867153644561768, "monster": 7.38023042678833, "##res": 6.300540924072266, "shake": 6.871474742889404, "agents": 6.121434211730957, "frequency": 5.990065574645996, "springs": 6.601550579071045, "dogs": 5.4109601974487305, "practices": 6.124788761138916, "61": 5.867753028869629, "gang": 6.898672580718994, "plastic": 5.605900764465332, "easier": 5.639406204223633, "suggests": 6.236570835113525, "gulf": 6.610332012176514, "blade": 6.968405723571777, "exposed": 6.184097766876221, "colors": 5.566418170928955, "industries": 6.440896511077881, "markets": 6.361259937286377, "pan": 4.903329849243164, "nervous": 5.785484790802002, "electoral": 7.980833530426025, "charts": 6.7170515060424805, "legislation": 6.788721561431885, "ownership": 6.507524013519287, "##idae": 7.961507797241211, "mac": 5.699389934539795, "appointment": 6.572499752044678, "shield": 7.143555164337158, "copy": 5.480433464050293, "assault": 7.376608848571777, "socialist": 8.338903427124023, "abbey": 8.538838386535645, "monument": 7.714419364929199, "license": 5.3255486488342285, "throne": 7.270715236663818, "employment": 5.711762428283691, "jay": 7.249162197113037, "93": 6.222564697265625, "replacement": 5.774645805358887, "charter": 7.168929576873779, "cloud": 6.225876331329346, "powered": 6.61936092376709, "suffering": 6.62616491317749, "accounts": 5.693696975708008, "oak": 6.765596389770508, "connecticut": 6.766872406005859, "strongly": 6.866795539855957, "wright": 7.6876678466796875, "colour": 6.602467060089111, "crystal": 6.5081305503845215, "13th": 7.405025005340576, "context": 5.997820854187012, "welsh": 7.70383358001709, "networks": 6.492031097412109, "voiced": 8.145874977111816, "gabriel": 8.303118705749512, "jerry": 7.70383358001709, "##cing": 6.452091693878174, "forehead": 7.774466037750244, "mp": 6.536202907562256, "##ens": 5.979460716247559, "manage": 5.796144962310791, "schedule": 5.497209072113037, "totally": 6.838855743408203, "remix": 9.331233024597168, "##ii": 7.236670017242432, "forests": 6.861706733703613, "occupation": 7.010247230529785, "print": 5.57163667678833, "nicholas": 8.05246353149414, "brazilian": 7.926130771636963, "strategic": 6.895874500274658, "vampires": 9.620831489562988, "engineers": 6.798103332519531, "76": 6.019637584686279, "roots": 5.903730392456055, "seek": 6.363883018493652, "correct": 5.3402533531188965, "instrumental": 7.987137317657471, "und": 6.281617641448975, "alfred": 7.91121244430542, "backed": 7.340573310852051, "hop": 6.835904121398926, "##des": 6.472301006317139, "stanley": 7.8490190505981445, "robinson": 7.875753879547119, "traveled": 7.571791648864746, "wayne": 7.221541881561279, "welcome": 5.4790778160095215, "austrian": 8.478842735290527, "achieve": 5.96688985824585, "67": 5.928951263427734, "exit": 6.660721778869629, "rates": 5.028125286102295, "1899": 8.280549049377441, "strip": 6.603801250457764, "whereas": 6.059896469116211, "##cs": 6.327713489532471, "sing": 6.906209468841553, "deeply": 7.38023042678833, "adventure": 6.803387641906738, "bobby": 8.017550468444824, "rick": 7.203441619873047, "jamie": 8.197096824645996, "careful": 6.597893238067627, "components": 5.610433578491211, "cap": 5.5634942054748535, "useful": 5.03892183303833, "personality": 6.241612434387207, "knee": 6.157202243804932, "##shi": 6.937872886657715, "pushing": 7.3251752853393555, "hosts": 7.120905876159668, "02": 5.856661319732666, "protest": 7.975884437561035, "ca": 4.959638595581055, "ottoman": 8.388367652893066, "symphony": 8.730623245239258, "##sis": 5.3507819175720215, "63": 5.91981315612793, "boundary": 6.831912517547607, "1890": 7.931468486785889, "processes": 5.530572891235352, "considering": 6.392654895782471, "considerable": 7.243291854858398, "tons": 6.445801258087158, "##work": 6.430877685546875, "##ft": 5.902156829833984, "##nia": 6.107010841369629, "cooper": 7.484935760498047, "trading": 6.459360599517822, "dear": 7.092616081237793, "conduct": 5.9802656173706055, "91": 6.164006233215332, "illegal": 6.595987319946289, "apple": 5.555768966674805, "revolutionary": 7.166289806365967, "holiday": 6.060138702392578, "definition": 3.9443371295928955, "harder": 6.827622890472412, "##van": 7.59400749206543, "jacob": 7.785015106201172, "circumstances": 6.367763996124268, "destruction": 7.026416778564453, "##lle": 7.278550148010254, "popularity": 6.122774600982666, "grip": 7.439263343811035, "classified": 5.921204090118408, "liverpool": 8.483205795288086, "donald": 6.68540620803833, "baltimore": 7.3395280838012695, "flows": 6.457772731781006, "seeking": 6.588809013366699, "honour": 8.413029670715332, "approval": 6.54907751083374, "92": 6.0140228271484375, "mechanical": 6.2076849937438965, "till": 6.7527289390563965, "happening": 6.958124160766602, "statue": 7.549199104309082, "critic": 8.00561237335205, "increasingly": 6.972138404846191, "immediate": 6.300294399261475, "describe": 5.436031818389893, "commerce": 6.889523983001709, "stare": 9.140122413635254, "##ster": 6.587329864501953, "indonesia": 7.43734073638916, "meat": 4.977859020233154, "rounds": 7.745036602020264, "boats": 7.314247131347656, "baker": 7.242343425750732, "orthodox": 8.722952842712402, "depression": 5.807371616363525, "formally": 7.299413681030273, "worn": 6.595407485961914, "naked": 7.731026649475098, "claire": 8.41660213470459, "muttered": 11.960762977600098, "sentence": 5.909173965454102, "11th": 7.426262378692627, "emily": 8.067138671875, "document": 5.3466901779174805, "77": 5.9639811515808105, "criticism": 7.846124172210693, "wished": 8.995124816894531, "vessel": 6.513225078582764, "spiritual": 6.882662296295166, "bent": 7.382409572601318, "virgin": 7.103285789489746, "parker": 7.805342674255371, "minimum": 4.926562309265137, "murray": 7.9944868087768555, "lunch": 6.701747894287109, "danny": 7.992476940155029, "printed": 6.554464817047119, "compilation": 8.300838470458984, "keyboards": 8.563407897949219, "false": 6.466464519500732, "blow": 6.707470893859863, "belonged": 8.65774154663086, "68": 5.93560266494751, "raising": 6.878808975219727, "78": 5.94462776184082, "cutting": 6.110928535461426, "##board": 6.460371971130371, "pittsburgh": 7.363143444061279, "##up": 5.2939300537109375, "9th": 7.493025779724121, "shadows": 8.487039566040039, "81": 5.993777275085449, "hated": 8.699607849121094, "indigenous": 7.454582214355469, "jon": 7.501795768737793, "15th": 6.981347560882568, "barry": 7.800084114074707, "scholar": 8.373563766479492, "ah": 6.724462509155273, "##zer": 6.772784233093262, "oliver": 8.0237455368042, "##gy": 6.585115909576416, "stick": 5.895723342895508, "susan": 7.643983364105225, "meetings": 7.243924617767334, "attracted": 7.540431022644043, "spell": 7.5147857666015625, "romantic": 6.983541488647461, "##ver": 5.669144630432129, "ye": 7.270715236663818, "1895": 8.241166114807129, "photo": 5.179504871368408, "demanded": 8.269453048706055, "customers": 5.32624626159668, "##ac": 5.247097492218018, "1896": 8.165969848632812, "logan": 8.106856346130371, "revival": 8.194226264953613, "keys": 6.65350341796875, "modified": 6.481710910797119, "commanded": 8.778661727905273, "jeans": 8.033459663391113, "##ious": 6.018614292144775, "upset": 6.96277379989624, "raw": 5.793246746063232, "phil": 7.094386577606201, "detective": 7.894994258880615, "hiding": 7.973583221435547, "resident": 6.400728702545166, "vincent": 8.110615730285645, "##bly": 6.978915691375732, "experiences": 6.290302753448486, "diamond": 6.683868408203125, "defeating": 8.76697826385498, "coverage": 5.5670390129089355, "lucas": 8.006969451904297, "external": 5.796889781951904, "parks": 6.452808856964111, "franchise": 6.656050205230713, "helen": 8.07546615600586, "bible": 6.699541091918945, "successor": 7.972599029541016, "percussion": 8.71396255493164, "celebrated": 7.0217156410217285, "il": 6.135651111602783, "lift": 6.342833995819092, "profile": 5.854016304016113, "clan": 7.858339309692383, "romania": 8.324808120727539, "##ied": 7.608944892883301, "mills": 7.680294036865234, "##su": 6.468721866607666, "nobody": 7.593782901763916, "achievement": 7.368687152862549, "shrugged": 11.345816612243652, "fault": 7.041040897369385, "1897": 8.392353057861328, "rhythm": 7.013510704040527, "initiative": 7.441189289093018, "breakfast": 6.524416923522949, "carbon": 5.255275726318359, "700": 5.912889003753662, "69": 6.04160737991333, "lasted": 7.297574520111084, "violent": 7.106591701507568, "74": 6.051982879638672, "wound": 6.635424613952637, "ken": 6.6830549240112305, "killer": 7.114904880523682, "gradually": 6.531223297119141, "filmed": 7.669576644897461, "\u00b0c": 6.632758140563965, "dollars": 5.683703899383545, "processing": 5.841983795166016, "94": 6.135494232177734, "remove": 4.642393589019775, "criticized": 8.769158363342285, "guests": 6.550580024719238, "sang": 7.5828375816345215, "chemistry": 6.40229606628418, "##vin": 7.4153056144714355, "legislature": 7.042075157165527, "disney": 6.2264485359191895, "##bridge": 7.709616661071777, "uniform": 6.666658401489258, "escaped": 8.47287368774414, "integrated": 6.535033702850342, "proposal": 7.436764717102051, "purple": 6.515896320343018, "denied": 7.487961769104004, "liquid": 5.154237270355225, "karl": 7.957622051239014, "influential": 7.357985496520996, "morris": 7.923316955566406, "nights": 6.832856178283691, "stones": 6.511701583862305, "intense": 6.5195722579956055, "experimental": 7.376970291137695, "twisted": 7.891056060791016, "71": 5.988531112670898, "84": 6.033270835876465, "##ld": 6.530292510986328, "pace": 6.726441383361816, "nazi": 7.733348369598389, "mitchell": 8.010711669921875, "ny": 5.772862434387207, "blind": 7.095613956451416, "reporter": 7.5366058349609375, "newspapers": 6.863976955413818, "14th": 7.189853668212891, "centers": 5.999780654907227, "burn": 5.843504428863525, "basin": 7.12919807434082, "forgotten": 7.876647472381592, "surviving": 7.582393646240234, "filed": 6.1306986808776855, "collections": 7.4586944580078125, "monastery": 9.206595420837402, "losses": 7.107558250427246, "manual": 6.0766520500183105, "couch": 8.18851089477539, "description": 5.367003917694092, "appropriate": 5.478616714477539, "merely": 7.211990833282471, "tag": 6.586181640625, "missions": 7.785287380218506, "sebastian": 8.748991966247559, "restoration": 7.568939685821533, "replacing": 6.649477005004883, "triple": 6.778929710388184, "73": 6.124168395996094, "elder": 7.666431903839111, "julia": 8.337957382202148, "warriors": 7.717973232269287, "benjamin": 7.540217876434326, "julian": 8.29947280883789, "convinced": 8.163187980651855, "stronger": 6.642773151397705, "amazing": 6.212470054626465, "declined": 7.628517150878906, "versus": 6.8001322746276855, "merchant": 7.482722759246826, "happens": 5.676513195037842, "output": 6.037809371948242, "finland": 7.951822280883789, "bare": 7.319355010986328, "barbara": 7.614891052246094, "absence": 6.62830114364624, "ignored": 8.066778182983398, "dawn": 7.373000144958496, "injuries": 6.181085586547852, "##port": 6.594167232513428, "producers": 6.986963272094727, "##ram": 6.103715419769287, "82": 5.991693496704102, "luis": 8.422758102416992, "##ities": 6.797393798828125, "kw": 6.994582176208496, "admit": 7.746082305908203, "expensive": 5.479050636291504, "electricity": 6.120301723480225, "nba": 6.652626991271973, "exception": 6.43200159072876, "symbol": 5.591786861419678, "##ving": 6.620887756347656, "ladies": 7.748701095581055, "shower": 6.630441188812256, "sheriff": 7.037944316864014, "characteristics": 5.74137020111084, "##je": 7.604848861694336, "aimed": 7.485137462615967, "button": 5.182461738586426, "ratio": 5.549409866333008, "effectively": 6.390899658203125, "summit": 7.242501258850098, "angle": 6.0730133056640625, "jury": 7.187008380889893, "bears": 6.969969272613525, "foster": 7.018172740936279, "vessels": 5.6488356590271, "pants": 7.573991298675537, "executed": 7.533429145812988, "evans": 7.8084001541137695, "dozen": 7.320892333984375, "advertising": 6.737827301025391, "kicked": 8.466940879821777, "patrol": 7.889545440673828, "1889": 8.186071395874023, "competitions": 8.456242561340332, "lifetime": 6.400320053100586, "principles": 6.358709812164307, "athletics": 8.258478164672852, "##logy": 6.401273727416992, "birmingham": 7.908439636230469, "sponsored": 6.724650859832764, "89": 6.14283561706543, "rob": 7.164095401763916, "nomination": 7.9476542472839355, "1893": 8.287266731262207, "acoustic": 7.820441722869873, "##sm": 6.035017967224121, "creature": 7.578404426574707, "longest": 6.139997482299805, "##tra": 5.235772132873535, "credits": 6.546316146850586, "harbor": 6.838961124420166, "dust": 6.487340450286865, "josh": 8.02340030670166, "##so": 5.785963535308838, "territories": 7.099579811096191, "milk": 5.245186805725098, "infrastructure": 7.045444011688232, "completion": 6.705067157745361, "thailand": 7.557394981384277, "indians": 7.1491546630859375, "leon": 7.9425482749938965, "archbishop": 9.509605407714844, "##sy": 6.278659343719482, "assist": 6.251479625701904, "pitch": 7.000396728515625, "blake": 8.041509628295898, "arrangement": 6.899456977844238, "girlfriend": 7.329132080078125, "serbian": 9.353169441223145, "operational": 7.124832630157471, "hence": 6.286892890930176, "sad": 7.19511604309082, "scent": 7.689396381378174, "fur": 6.409416675567627, "dj": 7.372640132904053, "sessions": 7.176299571990967, "hp": 6.291156768798828, "refer": 5.253608703613281, "rarely": 6.058976173400879, "##ora": 6.636458873748779, "exists": 6.1476898193359375, "1892": 8.3527193069458, "##ten": 6.148801326751709, "scientists": 6.0070600509643555, "dirty": 7.252668857574463, "penalty": 6.684591770172119, "burst": 7.6620941162109375, "portrait": 7.855125904083252, "seed": 5.9028191566467285, "79": 5.977986812591553, "pole": 6.915398597717285, "limits": 5.8913750648498535, "rival": 7.593109130859375, "1894": 8.505870819091797, "stable": 6.345989227294922, "alpha": 6.574280738830566, "grave": 7.797602653503418, "constitutional": 6.915398597717285, "alcohol": 5.342378616333008, "arrest": 6.869948863983154, "flower": 6.229887962341309, "mystery": 7.197077751159668, "devil": 7.765625953674316, "architectural": 7.58150577545166, "relationships": 6.363883018493652, "greatly": 6.206618309020996, "habitat": 6.734208106994629, "##istic": 6.777340412139893, "larry": 7.671759605407715, "progressive": 6.773377418518066, "remote": 6.397531986236572, "cotton": 6.429544448852539, "##ics": 6.345215797424316, "##ok": 7.125394821166992, "preserved": 7.636923789978027, "reaches": 6.305606842041016, "##ming": 6.768937587738037, "cited": 7.116576194763184, "86": 5.86201286315918, "vast": 6.424858570098877, "scholarship": 7.518320083618164, "decisions": 6.258190631866455, "cbs": 6.868316650390625, "joy": 6.950541019439697, "teach": 6.645380020141602, "1885": 8.280549049377441, "editions": 8.243743896484375, "knocked": 8.789739608764648, "eve": 7.484533309936523, "searching": 6.851711750030518, "partly": 7.102460861206055, "participation": 7.2967400550842285, "gap": 6.693315505981445, "animated": 7.193158149719238, "fate": 7.8495988845825195, "excellent": 5.800059795379639, "##ett": 7.59896183013916, "na": 5.3515448570251465, "87": 6.0692901611328125, "alternate": 6.424788475036621, "saints": 8.210739135742188, "youngest": 7.253787517547607, "##ily": 7.828361511230469, "climbed": 8.685457229614258, "##ita": 6.882772445678711, "##tors": 6.605053901672363, "suggest": 6.00083065032959, "##ct": 4.729238986968994, "discussion": 6.280409336090088, "staying": 7.096706390380859, "choir": 9.037030220031738, "lakes": 6.439266681671143, "jacket": 7.730254173278809, "revenue": 5.816634178161621, "nevertheless": 7.733606338500977, "peaked": 8.14978313446045, "instrument": 6.488083839416504, "wondering": 6.565567970275879, "annually": 6.0822343826293945, "managing": 6.632843971252441, "neil": 7.876647472381592, "1891": 8.475582122802734, "signing": 7.054440021514893, "terry": 8.096406936645508, "##ice": 6.019311904907227, "apply": 4.727601528167725, "clinical": 5.476641654968262, "brooklyn": 7.323802947998047, "aim": 6.650788307189941, "catherine": 8.13424015045166, "fuck": 8.833769798278809, "farmers": 6.97165584564209, "figured": 7.89803409576416, "ninth": 7.644455909729004, "pride": 7.066959857940674, "hugh": 8.4171142578125, "evolution": 6.676212787628174, "ordinary": 6.7387824058532715, "involvement": 7.391908168792725, "comfortable": 6.2271928787231445, "shouted": 10.27633285522461, "tech": 6.272588729858398, "encouraged": 7.473320484161377, "taiwan": 8.159226417541504, "representation": 6.898448467254639, "sharing": 6.286406517028809, "##lia": 6.013791561126709, "##em": 5.876344203948975, "panic": 7.139411449432373, "exact": 5.8025288581848145, "cargo": 7.301590919494629, "competing": 7.715179920196533, "fat": 4.6005635261535645, "cried": 9.494464874267578, "83": 6.028846740722656, "1920s": 7.684957981109619, "occasions": 7.66715669631958, "pa": 5.4169020652771, "cabin": 7.516031742095947, "borders": 6.999032974243164, "utah": 6.8318071365356445, "marcus": 8.330422401428223, "##isation": 7.542562484741211, "badly": 8.086432456970215, "muscles": 5.110290050506592, "##ance": 6.446799278259277, "victorian": 8.136942863464355, "transition": 6.575984001159668, "warner": 7.605530261993408, "bet": 6.833381175994873, "permission": 6.75914192199707, "##rin": 5.839571475982666, "slave": 7.20938777923584, "terrible": 7.633879661560059, "similarly": 6.938106060028076, "shares": 6.141625881195068, "seth": 8.615059852600098, "uefa": 9.797541618347168, "possession": 7.097116470336914, "medals": 8.553977012634277, "benefits": 4.553117752075195, "colleges": 6.419916152954102, "lowered": 7.76589298248291, "perfectly": 6.773970603942871, "mall": 6.740789890289307, "transit": 6.675315856933594, "##ye": 7.002384185791016, "##kar": 6.5178093910217285, "publisher": 7.454387187957764, "##ened": 6.835588455200195, "harrison": 7.627355098724365, "deaths": 6.607144832611084, "elevation": 6.557089805603027, "##ae": 6.610499858856201, "asleep": 7.670788764953613, "machines": 6.505252838134766, "sigh": 9.531194686889648, "ash": 6.735254287719727, "hardly": 7.699830055236816, "argument": 6.857717990875244, "occasion": 7.335009574890137, "parent": 5.712857246398926, "leo": 7.7398247718811035, "decline": 6.802369117736816, "1888": 8.490887641906738, "contribution": 6.6016340255737305, "##ua": 6.236513137817383, "concentration": 6.012589454650879, "1000": 5.745606422424316, "opportunities": 6.1476898193359375, "hispanic": 7.2823262214660645, "guardian": 7.416433334350586, "extent": 6.357795715332031, "emotions": 7.083810806274414, "hips": 7.409311294555664, "mason": 7.679070472717285, "volumes": 7.629913330078125, "bloody": 7.535969257354736, "controversy": 7.6783366203308105, "diameter": 6.003665447235107, "steady": 7.052608013153076, "mistake": 7.212757587432861, "phoenix": 7.0380730628967285, "identify": 5.5445661544799805, "violin": 8.662307739257812, "##sk": 7.231653690338135, "departure": 6.947594165802002, "richmond": 7.6534743309021, "spin": 6.021034240722656, "funeral": 7.241237640380859, "enemies": 7.838350296020508, "1864": 8.3613920211792, "gear": 6.646511554718018, "literally": 6.430315971374512, "connor": 8.479931831359863, "random": 6.479423999786377, "sergeant": 8.350323677062988, "grab": 7.265525817871094, "confusion": 6.629327774047852, "1865": 7.732058048248291, "transmission": 6.288535118103027, "informed": 7.109078407287598, "op": 5.528548717498779, "leaning": 8.372584342956543, "sacred": 7.588407039642334, "suspended": 7.220458984375, "thinks": 7.328787326812744, "gates": 7.421146869659424, "portland": 7.309503555297852, "luck": 6.821794033050537, "agencies": 6.041845321655273, "yours": 7.256989479064941, "hull": 7.809235572814941, "expert": 6.2181854248046875, "muscle": 4.721713066101074, "layer": 5.361422538757324, "practical": 6.354538440704346, "sculpture": 8.051043510437012, "jerusalem": 8.237311363220215, "latest": 5.279065132141113, "lloyd": 8.245035171508789, "statistics": 5.533773899078369, "deeper": 6.907792091369629, "recommended": 5.300754547119141, "warrior": 7.725631237030029, "arkansas": 6.924442768096924, "mess": 7.334662914276123, "supports": 6.280529975891113, "greg": 7.933674335479736, "eagle": 7.136848449707031, "1880": 7.512505531311035, "recovered": 7.926444053649902, "rated": 6.317758560180664, "concerts": 8.1478271484375, "rushed": 8.928963661193848, "##ano": 6.439691543579102, "stops": 6.760214805603027, "eggs": 5.395012378692627, "files": 5.392324924468994, "premiere": 7.0877299308776855, "keith": 8.014467239379883, "##vo": 5.846004486083984, "delhi": 7.980502605438232, "turner": 7.907516956329346, "pit": 6.248316287994385, "affair": 7.744253158569336, "belief": 6.775654315948486, "paint": 5.936458587646484, "##zing": 5.962837219238281, "mate": 7.382773399353027, "##ach": 6.442955017089844, "##ev": 7.217988014221191, "victim": 6.992364406585693, "##ology": 6.363226413726807, "withdrew": 9.520341873168945, "bonus": 6.5162787437438965, "styles": 6.431298732757568, "fled": 8.543472290039062, "##ud": 7.196624279022217, "glasgow": 8.736239433288574, "technologies": 6.686131000518799, "funded": 7.346343994140625, "nbc": 7.102598667144775, "adaptation": 7.436956405639648, "##ata": 7.1371331214904785, "portrayed": 7.573770999908447, "cooperation": 7.940958023071289, "supporters": 8.014467239379883, "judges": 7.486952304840088, "bernard": 8.359941482543945, "justin": 7.6037139892578125, "hallway": 9.408143043518066, "ralph": 8.056379318237305, "##ick": 7.184916973114014, "graduating": 8.047855377197266, "controversial": 7.3760666847229, "distant": 7.476111888885498, "continental": 6.532776832580566, "spider": 7.279369831085205, "bite": 6.592927932739258, "##ho": 5.775374412536621, "recognize": 6.541677951812744, "intention": 7.686435222625732, "mixing": 6.918251991271973, "##ese": 7.391357421875, "egyptian": 7.267630577087402, "bow": 5.848628997802734, "tourism": 7.281339645385742, "suppose": 7.424554347991943, "claiming": 7.459479808807373, "tiger": 7.321747303009033, "dominated": 7.498523712158203, "participants": 6.899008750915527, "vi": 5.699795246124268, "##ru": 5.408255100250244, "nurse": 5.94544792175293, "partially": 6.8969926834106445, "tape": 6.360605239868164, "##rum": 6.868534088134766, "psychology": 6.531922340393066, "##rn": 6.662755489349365, "essential": 5.141104221343994, "touring": 8.224569320678711, "duo": 7.0198163986206055, "voting": 7.2369842529296875, "civilian": 7.518528461456299, "emotional": 6.28046989440918, "channels": 6.797393798828125, "##king": 7.060878276824951, "apparent": 7.014139175415039, "hebrew": 6.687763690948486, "1887": 8.415580749511719, "tommy": 8.3613920211792, "carrier": 6.442955017089844, "intersection": 7.559997081756592, "beast": 7.754223346710205, "hudson": 7.614432334899902, "##gar": 7.101499557495117, "##zo": 6.181249618530273, "lab": 6.1142988204956055, "nova": 7.6926140785217285, "bench": 6.657898426055908, "discuss": 6.151398658752441, "costa": 7.299245834350586, "##ered": 7.625962734222412, "detailed": 5.680848121643066, "behalf": 6.9298624992370605, "drivers": 6.181522846221924, "unfortunately": 6.435028076171875, "obtain": 5.72300910949707, "##lis": 6.733257293701172, "rocky": 6.949596881866455, "##dae": 7.97852087020874, "siege": 8.60946273803711, "friendship": 7.8036789894104, "honey": 6.36198091506958, "##rian": 6.738591194152832, "1861": 7.813423156738281, "amy": 6.9822001457214355, "hang": 6.697889804840088, "posted": 5.701486587524414, "governments": 6.850002288818359, "collins": 7.225885391235352, "respond": 6.329107284545898, "wildlife": 6.868643283843994, "preferred": 6.457916736602783, "operator": 6.906435489654541, "##po": 5.8532280921936035, "laura": 7.818190574645996, "pregnant": 5.847845077514648, "videos": 6.079958438873291, "dennis": 8.116280555725098, "suspected": 7.354973793029785, "boots": 7.5300517082214355, "instantly": 7.301926136016846, "weird": 7.476711273193359, "automatic": 6.445801258087158, "businessman": 8.090853691101074, "alleged": 7.902305603027344, "placing": 6.904066562652588, "throwing": 7.689890384674072, "ph": 4.4656982421875, "mood": 6.504119396209717, "1862": 8.157647132873535, "perry": 7.717464923858643, "venue": 7.583504676818848, "jet": 6.8552470207214355, "remainder": 7.464203834533691, "##lli": 6.87398624420166, "##ci": 5.333037853240967, "passion": 7.213371276855469, "biological": 6.16939640045166, "boyfriend": 7.460068702697754, "1863": 8.086065292358398, "dirt": 6.76667594909668, "buffalo": 7.20328950881958, "ron": 7.181490898132324, "segment": 6.586509704589844, "fa": 4.844649314880371, "abuse": 5.536726474761963, "##era": 6.686222076416016, "genre": 7.253627777099609, "thrown": 7.638566493988037, "stroke": 6.143151760101318, "colored": 6.3411641120910645, "stress": 5.443118095397949, "exercise": 5.364535331726074, "displayed": 6.423254489898682, "##gen": 5.531772136688232, "struggled": 8.628242492675781, "##tti": 7.972599029541016, "abroad": 7.426262378692627, "dramatic": 6.943835258483887, "wonderful": 6.523184299468994, "thereafter": 7.80951452255249, "madrid": 8.037301063537598, "component": 5.804365634918213, "widespread": 6.917337894439697, "##sed": 6.723145008087158, "tale": 7.437532424926758, "citizen": 6.6919474601745605, "todd": 7.069615840911865, "monday": 5.699152946472168, "1886": 8.386877059936523, "vancouver": 7.573991298675537, "overseas": 7.426452159881592, "forcing": 8.079472541809082, "crying": 8.27210521697998, "descent": 7.405768871307373, "##ris": 7.113653659820557, "discussed": 6.678008556365967, "substantial": 6.959314346313477, "ranks": 6.654907703399658, "regime": 7.250914096832275, "1870": 8.097521781921387, "provinces": 7.611227512359619, "switch": 5.960860729217529, "drum": 7.399091720581055, "zane": 9.891326904296875, "ted": 7.500158309936523, "tribes": 7.385322570800781, "proof": 6.2060017585754395, "lp": 6.995075702667236, "cream": 5.680449962615967, "researchers": 6.166482448577881, "volunteer": 7.234786033630371, "manor": 8.501964569091797, "silk": 7.248048782348633, "milan": 8.285920143127441, "donated": 8.00561237335205, "allies": 7.61099910736084, "venture": 7.505695819854736, "principle": 6.614624977111816, "delivery": 5.784748554229736, "enterprise": 6.592102527618408, "##ves": 6.652013778686523, "##ans": 6.471203804016113, "bars": 6.679447650909424, "traditionally": 6.594249725341797, "witch": 7.986804485321045, "reminded": 8.816840171813965, "copper": 6.257187366485596, "##uk": 7.099579811096191, "pete": 7.958268642425537, "inter": 5.338744640350342, "links": 5.7072577476501465, "colin": 8.536529541015625, "grinned": 12.199514389038086, "elsewhere": 7.034343719482422, "competitive": 6.342898368835449, "frequent": 6.214786052703857, "##oy": 7.39117431640625, "scream": 8.80621337890625, "##hu": 7.14901065826416, "tension": 6.785113334655762, "texts": 7.550273895263672, "submarine": 8.372095108032227, "finnish": 8.612567901611328, "defending": 8.42430305480957, "defend": 7.465190410614014, "pat": 6.472008228302002, "detail": 6.279926300048828, "1884": 8.422758102416992, "affiliated": 7.28892707824707, "stuart": 8.393851280212402, "themes": 7.55609655380249, "villa": 8.129240036010742, "periods": 5.840660095214844, "tool": 5.227287292480469, "belgian": 8.468555450439453, "ruling": 7.485540390014648, "crimes": 7.197077751159668, "answers": 5.487159252166748, "folded": 7.954073905944824, "licensed": 6.0992207527160645, "resort": 6.2548298835754395, "demolished": 9.492963790893555, "hans": 8.303118705749512, "lucy": 8.355120658874512, "1881": 8.396855354309082, "lion": 7.13884162902832, "traded": 7.301590919494629, "photographs": 7.588630199432373, "writes": 7.5013861656188965, "craig": 7.719245433807373, "##fa": 5.744086265563965, "trials": 7.1643877029418945, "generated": 6.4998979568481445, "beth": 7.93651819229126, "noble": 7.333796977996826, "debt": 6.028658866882324, "percentage": 5.510125160217285, "yorkshire": 8.301750183105469, "erected": 8.68746566772461, "ss": 6.033695697784424, "viewed": 6.73278284072876, "grades": 6.90519380569458, "confidence": 6.0222930908203125, "ceased": 8.850201606750488, "islam": 7.84814977645874, "telephone": 6.297648906707764, "retail": 5.9841203689575195, "##ible": 5.847218036651611, "chile": 7.341794967651367, "m\u00b2": 10.004790306091309, "roberts": 8.02236557006836, "sixteen": 8.167962074279785, "##ich": 7.469346523284912, "commented": 9.005208015441895, "hampshire": 7.278713703155518, "innocent": 8.104233741760254, "dual": 6.719296932220459, "pounds": 5.374298572540283, "checked": 6.648603916168213, "regulations": 6.156881809234619, "afghanistan": 7.731026649475098, "sung": 7.932098388671875, "rico": 7.189253807067871, "liberty": 6.957767486572266, "assets": 6.069778919219971, "bigger": 6.297956466674805, "options": 4.904610633850098, "angels": 8.098636627197266, "relegated": 10.080150604248047, "tribute": 7.7123942375183105, "wells": 7.133724212646484, "attending": 7.1638031005859375, "leaf": 6.02425479888916, "##yan": 7.856293201446533, "butler": 8.135783195495605, "romanian": 8.863704681396484, "forum": 6.456475257873535, "monthly": 5.397132396697998, "lisa": 7.720009803771973, "patterns": 6.326700687408447, "gmina": 12.39769172668457, "##tory": 6.657898426055908, "madison": 7.078296184539795, "hurricane": 7.150883674621582, "rev": 5.886312484741211, "##ians": 6.924442768096924, "bristol": 8.359941482543945, "##ula": 6.040181636810303, "elite": 7.255387306213379, "valuable": 6.490390777587891, "disaster": 7.285621166229248, "democracy": 7.337614059448242, "awareness": 6.882221221923828, "germans": 8.179998397827148, "freyja": 12.454044342041016, "##ins": 6.045659065246582, "loop": 6.735635280609131, "absolutely": 6.797292709350586, "paying": 5.740806579589844, "populations": 6.830131530761719, "maine": 7.025652885437012, "sole": 6.483707427978516, "prayer": 7.8850274085998535, "spencer": 8.119694709777832, "releases": 6.647034168243408, "doorway": 9.067935943603516, "bull": 6.636114120483398, "##ani": 5.895969867706299, "lover": 7.777970314025879, "midnight": 7.4022393226623535, "conclusion": 6.985861778259277, "##sson": 8.586170196533203, "thirteen": 7.782028675079346, "lily": 7.956975936889648, "mediterranean": 6.823976039886475, "##lt": 6.2636399269104, "nhl": 7.798429012298584, "proud": 6.818685531616211, "sample": 5.684935092926025, "##hill": 7.800360202789307, "drummer": 8.321548461914062, "guinea": 7.6107707023620605, "##ova": 7.378961086273193, "murphy": 8.115144729614258, "climb": 7.184469699859619, "##ston": 8.246759414672852, "instant": 6.461023330688477, "attributed": 7.410245418548584, "horn": 7.291082382202148, "ain": 7.594232082366943, "railways": 9.224787712097168, "steven": 7.715940952301025, "##ao": 7.985142230987549, "autumn": 7.235413551330566, "ferry": 7.6171875, "opponent": 7.890753746032715, "root": 5.584774017333984, "traveling": 6.531301021575928, "secured": 7.428925037384033, "corridor": 8.536529541015625, "stretched": 7.661613464355469, "tales": 7.938101291656494, "sheet": 5.690243244171143, "trinity": 8.302206039428711, "cattle": 6.960744380950928, "helps": 4.818747520446777, "indicates": 6.054919242858887, "manhattan": 7.160885334014893, "murdered": 8.253686904907227, "fitted": 7.582171440124512, "1882": 8.461042404174805, "gentle": 6.9953227043151855, "grandmother": 7.976872444152832, "mines": 8.015493392944336, "shocked": 8.330891609191895, "vegas": 6.586345195770264, "produces": 5.708415985107422, "##light": 7.1591386795043945, "caribbean": 6.714158535003662, "##ou": 6.646772861480713, "belong": 6.840863227844238, "continuous": 6.345280170440674, "desperate": 8.500295639038086, "drunk": 7.820441722869873, "historically": 7.016910552978516, "trio": 8.062461853027344, "waved": 10.537548065185547, "raf": 8.410484313964844, "dealing": 6.787517547607422, "nathan": 8.322943687438965, "bat": 6.984639644622803, "murmured": 12.370662689208984, "interrupted": 8.55046272277832, "residing": 7.706092357635498, "scientist": 7.186261177062988, "pioneer": 7.677359580993652, "harold": 8.426366806030273, "aaron": 7.810629367828369, "##net": 6.353628158569336, "delta": 6.841392517089844, "attempting": 7.545982360839844, "minority": 7.472524642944336, "mini": 6.010374069213867, "believes": 7.3419694900512695, "chorus": 8.206999778747559, "tend": 5.2398176193237305, "lots": 5.851613998413086, "eyed": 8.125028610229492, "indoor": 6.8973283767700195, "load": 5.930099010467529, "shots": 7.111571311950684, "updated": 5.52428674697876, "jail": 6.450228691101074, "##llo": 6.509420871734619, "concerning": 7.142696380615234, "connecting": 6.675943374633789, "wealth": 6.760019302368164, "##ved": 7.211224555969238, "slaves": 7.262941360473633, "arrive": 6.598308563232422, "rangers": 8.309989929199219, "sufficient": 6.543719291687012, "rebuilt": 8.597135543823242, "##wick": 7.965082168579102, "cardinal": 8.310909271240234, "flood": 7.094659328460693, "muhammad": 8.506430625915527, "whenever": 6.618259429931641, "relation": 6.696148872375488, "runners": 7.903223514556885, "moral": 7.100127696990967, "repair": 5.63161039352417, "viewers": 7.447766304016113, "arriving": 7.83519983291626, "revenge": 8.332771301269531, "punk": 8.442503929138184, "assisted": 7.313398361206055, "bath": 6.376967430114746, "fairly": 6.188605308532715, "breathe": 6.8565354347229, "lists": 5.914647102355957, "innings": 8.95490550994873, "illustrated": 7.599639415740967, "whisper": 9.181010246276855, "nearest": 6.485336780548096, "voters": 7.454582214355469, "clinton": 6.951485633850098, "ties": 7.530894756317139, "ultimate": 6.554385185241699, "screamed": 10.83307933807373, "beijing": 8.14042854309082, "lions": 7.6558613777160645, "andre": 8.44197940826416, "fictional": 7.130468845367432, "gathering": 7.437725067138672, "comfort": 6.347602844238281, "radar": 7.4020538330078125, "suitable": 6.433830738067627, "dismissed": 8.36575698852539, "hms": 9.410902976989746, "ban": 6.692859172821045, "pine": 6.396921157836914, "wrist": 6.913463115692139, "atmosphere": 5.932612419128418, "voivodeship": 11.619246482849121, "bid": 6.965526103973389, "timber": 7.4567341804504395, "##ned": 7.317479133605957, "##nan": 7.721794605255127, "giants": 7.737228870391846, "##ane": 6.389955997467041, "cameron": 7.9454169273376465, "recovery": 6.004627704620361, "uss": 8.059595108032227, "identical": 6.65350341796875, "categories": 5.912220001220703, "switched": 7.781215667724609, "serbia": 8.630773544311523, "laughter": 8.813031196594238, "noah": 8.463719367980957, "ensemble": 8.59224796295166, "therapy": 5.479592800140381, "peoples": 7.28117561340332, "touching": 7.431786060333252, "##off": 6.938689231872559, "locally": 7.336397647857666, "pearl": 7.16790246963501, "platforms": 7.567188262939453, "everywhere": 6.972620964050293, "ballet": 8.315521240234375, "tables": 5.660887241363525, "lanka": 8.292673110961914, "herbert": 8.448821067810059, "outdoor": 6.352199554443359, "toured": 9.331233024597168, "derek": 8.577723503112793, "1883": 8.430505752563477, "spaces": 6.689398765563965, "contested": 8.834546089172363, "swept": 8.541152000427246, "1878": 8.779396057128906, "exclusive": 6.355058670043945, "slight": 6.847869396209717, "connections": 6.733162879943848, "##dra": 5.209289073944092, "winds": 6.481415748596191, "prisoner": 8.347455978393555, "collective": 7.384957790374756, "bangladesh": 8.178788185119629, "tube": 5.760648727416992, "publicly": 7.420768737792969, "wealthy": 7.554152011871338, "thai": 8.071836471557617, "##ys": 5.626352310180664, "isolated": 6.982565879821777, "select": 4.652718544006348, "##ric": 5.694436073303223, "insisted": 9.049470901489258, "pen": 6.00839376449585, "fortune": 7.205724239349365, "ticket": 6.196238040924072, "spotted": 7.503846645355225, "reportedly": 7.533429145812988, "animation": 7.315436840057373, "enforcement": 6.509192943572998, "tanks": 7.506518840789795, "110": 6.289875507354736, "decides": 7.699830055236816, "wider": 7.046483039855957, "lowest": 5.637848377227783, "owen": 8.601432800292969, "##time": 6.22519063949585, "nod": 7.383501052856445, "hitting": 7.485137462615967, "##hn": 6.918823719024658, "gregory": 8.530780792236328, "furthermore": 7.489377498626709, "magazines": 7.949575901031494, "fighters": 8.559861183166504, "solutions": 5.868592739105225, "##ery": 7.388792991638184, "pointing": 7.798704624176025, "requested": 7.133157730102539, "peru": 7.397614002227783, "reed": 7.757656574249268, "chancellor": 8.533650398254395, "knights": 8.376015663146973, "mask": 7.153338432312012, "worker": 6.476848125457764, "eldest": 8.391854286193848, "flames": 8.488137245178223, "reduction": 6.320583343505859, "1860": 8.043620109558105, "volunteers": 7.629215240478516, "##tis": 5.523266315460205, "reporting": 6.230404853820801, "##hl": 6.9822001457214355, "wire": 6.040466785430908, "advisory": 7.593782901763916, "endemic": 8.461577415466309, "origins": 6.37650203704834, "settlers": 7.4691481590271, "pursue": 7.1448445320129395, "knock": 7.871001243591309, "consumer": 5.8988938331604, "1876": 8.38538932800293, "eu": 5.64745569229126, "compound": 5.855555057525635, "creatures": 7.233845233917236, "mansion": 8.1478271484375, "sentenced": 8.085698127746582, "ivan": 8.303118705749512, "deployed": 8.171157836914062, "guitars": 8.612567901611328, "frowned": 10.664703369140625, "involves": 5.627577781677246, "mechanism": 6.540502071380615, "kilometers": 6.361652851104736, "perspective": 6.747897624969482, "shops": 6.896097660064697, "maps": 6.347021579742432, "terminus": 9.038934707641602, "duncan": 8.463183403015137, "alien": 7.436572551727295, "fist": 7.766960620880127, "bridges": 7.41155481338501, "##pers": 6.803387641906738, "heroes": 7.716448783874512, "fed": 6.338472366333008, "derby": 8.519381523132324, "swallowed": 8.322012901306152, "##ros": 6.536592960357666, "patent": 7.0843505859375, "sara": 7.6053032875061035, "illness": 5.777892112731934, "characterized": 5.81204891204834, "adventures": 7.494854927062988, "slide": 6.383708477020264, "hawaii": 6.446228504180908, "jurisdiction": 6.978915691375732, "##op": 4.608974456787109, "organised": 8.879827499389648, "##side": 7.043498992919922, "adelaide": 8.844694137573242, "walks": 7.7015790939331055, "biology": 6.401682376861572, "se": 5.008669376373291, "##ties": 6.371792316436768, "rogers": 7.883825778961182, "swing": 7.329994201660156, "tightly": 7.123288154602051, "boundaries": 6.739546775817871, "##rie": 7.477110862731934, "prepare": 5.842061996459961, "implementation": 6.9921183586120605, "stolen": 7.474117279052734, "##sha": 7.095613956451416, "certified": 5.744510650634766, "colombia": 7.80951452255249, "edwards": 8.265928268432617, "garage": 6.683868408203125, "##mm": 6.103968620300293, "recalled": 8.676795959472656, "##ball": 6.978551387786865, "rage": 8.28951644897461, "harm": 6.452020168304443, "nigeria": 7.902611255645752, "breast": 5.734278678894043, "##ren": 6.036294460296631, "furniture": 6.722957134246826, "pupils": 8.151350975036621, "settle": 7.2453508377075195, "##lus": 7.027308464050293, "cuba": 7.4781107902526855, "balls": 7.354443073272705, "client": 6.010881423950195, "alaska": 6.272229194641113, "21st": 7.191955089569092, "linear": 6.599720001220703, "thrust": 8.186477661132812, "celebration": 7.194061279296875, "latino": 7.840934753417969, "genetic": 5.699727535247803, "terror": 7.985474586486816, "##cia": 6.714531421661377, "##ening": 6.575010299682617, "lightning": 7.322089672088623, "fee": 5.087681770324707, "witness": 7.545554161071777, "lodge": 7.636689186096191, "establishing": 7.345642566680908, "skull": 7.0524773597717285, "##ique": 7.727940082550049, "earning": 6.597312927246094, "hood": 7.232592582702637, "##ei": 6.663907051086426, "rebellion": 7.962156772613525, "wang": 9.08176326751709, "sporting": 7.685204029083252, "warned": 8.265928268432617, "missile": 8.438314437866211, "devoted": 7.5658769607543945, "activist": 8.091961860656738, "porch": 8.009689331054688, "worship": 7.607349872589111, "fourteen": 8.024090766906738, "package": 5.831250190734863, "1871": 8.427916526794434, "decorated": 8.271220207214355, "##shire": 8.659695625305176, "housed": 8.12464714050293, "##ock": 6.631298542022705, "chess": 8.702325820922852, "sailed": 8.730623245239258, "doctors": 5.722870826721191, "oscar": 7.173787593841553, "joan": 8.205342292785645, "treat": 4.914331436157227, "garcia": 8.655141830444336, "harbour": 8.294482231140137, "jeremy": 8.428434371948242, "##ire": 6.454892158508301, "traditions": 7.374081611633301, "dominant": 6.694228649139404, "jacques": 8.797943115234375, "##gon": 6.33196496963501, "##wan": 8.057807922363281, "relocated": 8.688807487487793, "1879": 8.510354042053223, "amendment": 6.3676981925964355, "sized": 6.19208288192749, "companion": 7.351089954376221, "simultaneously": 7.363857269287109, "volleyball": 8.446184158325195, "spun": 8.529062271118164, "acre": 6.507221221923828, "increases": 5.462334156036377, "stopping": 7.2310285568237305, "loves": 7.314247131347656, "belongs": 6.659750461578369, "affect": 5.049976825714111, "drafted": 7.9878034591674805, "tossed": 8.781603813171387, "scout": 7.964431285858154, "battles": 7.751852512359619, "1875": 8.526776313781738, "filming": 7.625035285949707, "shoved": 10.856268882751465, "munich": 8.527918815612793, "tenure": 7.972927093505859, "vertical": 6.435169219970703, "romance": 7.490389347076416, "pc": 5.486749649047852, "##cher": 7.542562484741211, "argue": 7.5866217613220215, "##ical": 6.430456638336182, "craft": 6.845315933227539, "ranging": 6.194962024688721, "www": 5.094171047210693, "opens": 6.463268756866455, "honest": 7.466376304626465, "tyler": 7.823545455932617, "yesterday": 6.874533653259277, "virtual": 6.594663143157959, "##let": 6.539328098297119, "muslims": 8.041861534118652, "reveal": 7.034857273101807, "snake": 7.051954746246338, "immigrants": 7.386599540710449, "radical": 7.516031742095947, "screaming": 9.113079071044922, "speakers": 6.7747626304626465, "firing": 7.966711521148682, "saving": 6.27540922164917, "belonging": 7.290252685546875, "ease": 6.38908052444458, "lighting": 7.010121822357178, "prefecture": 9.063043594360352, "blame": 7.718990802764893, "farmer": 7.591091156005859, "hungry": 7.680783748626709, "grows": 6.236050605773926, "rubbed": 8.90118408203125, "beam": 7.274135112762451, "sur": 6.678637981414795, "subsidiary": 7.381137847900391, "##cha": 6.036625862121582, "armenian": 9.105921745300293, "sao": 8.75113296508789, "dropping": 7.3465189933776855, "conventional": 6.540894031524658, "##fer": 6.237033367156982, "microsoft": 5.495059013366699, "reply": 6.769331455230713, "qualify": 6.176066875457764, "spots": 6.33712911605835, "1867": 8.1844482421875, "sweat": 6.788019180297852, "festivals": 7.946694850921631, "##ken": 7.434846878051758, "immigration": 6.774267673492432, "physician": 5.916954040527344, "discover": 6.078082084655762, "exposure": 5.8118977546691895, "sandy": 7.2852911949157715, "explanation": 6.588479995727539, "isaac": 8.043620109558105, "implemented": 7.333970069885254, "##fish": 6.4676289558410645, "hart": 7.750801086425781, "initiated": 7.630146026611328, "connect": 5.240649700164795, "stakes": 8.413029670715332, "presents": 6.880018711090088, "heights": 7.055357456207275, "householder": 10.309724807739258, "pleased": 7.594681739807129, "tourist": 7.012630939483643, "regardless": 6.036105155944824, "slip": 7.041945457458496, "closest": 6.511625289916992, "##ction": 6.088146686553955, "surely": 8.094552040100098, "sultan": 8.955781936645508, "brings": 6.4323530197143555, "riley": 8.750419616699219, "preparation": 6.213373184204102, "aboard": 7.955362796783447, "slammed": 9.845467567443848, "baptist": 8.085698127746582, "experiment": 6.786615371704102, "ongoing": 6.836325168609619, "interstate": 7.184171199798584, "organic": 5.745500564575195, "playoffs": 8.332301139831543, "##ika": 7.390257835388184, "1877": 8.575323104858398, "130": 6.399706840515137, "##tar": 6.388138294219971, "hindu": 7.693357944488525, "error": 6.121176719665527, "tours": 7.287272930145264, "tier": 7.158557415008545, "plenty": 6.040371417999268, "arrangements": 7.520196437835693, "talks": 7.329476833343506, "trapped": 7.544912338256836, "excited": 7.193910598754883, "sank": 8.796445846557617, "ho": 5.104142665863037, "athens": 7.715179920196533, "1872": 8.545796394348145, "denver": 7.056275367736816, "welfare": 7.286116600036621, "suburb": 7.733864784240723, "athletes": 6.934963226318359, "trick": 7.034985542297363, "diverse": 6.455899238586426, "belly": 6.832121849060059, "exclusively": 6.433408260345459, "yelled": 10.612804412841797, "1868": 8.262414932250977, "##med": 6.138005256652832, "conversion": 6.218242168426514, "##ette": 7.523540496826172, "1874": 8.631406784057617, "internationally": 7.5971574783325195, "computers": 6.326953887939453, "conductor": 7.816224575042725, "abilities": 7.043498992919922, "sensitive": 6.199519157409668, "hello": 6.937756538391113, "dispute": 7.424174785614014, "measured": 5.703112602233887, "globe": 6.7527289390563965, "rocket": 7.665948867797852, "prices": 5.037386894226074, "amsterdam": 7.993816375732422, "flights": 6.326131343841553, "tigers": 8.000539779663086, "inn": 6.600801467895508, "municipalities": 8.152528762817383, "emotion": 7.553504467010498, "references": 6.5569305419921875, "3d": 6.937756538391113, "##mus": 6.348830699920654, "explains": 6.29396915435791, "airlines": 6.433971405029297, "manufactured": 6.466391563415527, "pm": 5.414561748504639, "archaeological": 8.512603759765625, "1873": 8.695544242858887, "interpretation": 7.1196465492248535, "devon": 8.52849006652832, "comment": 6.383842468261719, "##ites": 6.898000240325928, "settlements": 8.178788185119629, "kissing": 8.524495124816895, "absolute": 6.6003851890563965, "improvement": 6.50593376159668, "suite": 6.853745460510254, "impressed": 8.361876487731934, "barcelona": 7.971287727355957, "sullivan": 8.252819061279297, "jefferson": 6.9306721687316895, "towers": 7.836058139801025, "jesse": 8.175568580627441, "julie": 8.25760555267334, "##tin": 6.135598659515381, "##lu": 5.464842796325684, "grandson": 8.340323448181152, "hi": 5.187854766845703, "gauge": 6.945125579833984, "regard": 7.097116470336914, "rings": 6.769627094268799, "interviews": 7.6171875, "trace": 6.77436637878418, "raymond": 8.368189811706543, "thumb": 6.526345729827881, "departments": 6.675405502319336, "burns": 6.796584129333496, "serial": 7.0776262283325195, "bulgarian": 9.291202545166016, "scores": 6.34889554977417, "demonstrated": 7.422849178314209, "##ix": 7.138129234313965, "1866": 8.463183403015137, "kyle": 8.276540756225586, "alberta": 7.804510593414307, "underneath": 7.0217156410217285, "romanized": 10.64551830291748, "##ward": 7.6303791999816895, "relieved": 8.460508346557617, "acquisition": 7.019436836242676, "phrase": 6.148112773895264, "cliff": 8.00561237335205, "reveals": 7.139411449432373, "han": 7.388426780700684, "cuts": 6.551213264465332, "merger": 7.954395771026611, "custom": 5.667344093322754, "##dar": 7.7674946784973145, "nee": 7.367790699005127, "gilbert": 8.281442642211914, "graduation": 7.325862407684326, "##nts": 6.025611400604248, "assessment": 6.0642170906066895, "cafe": 7.762696743011475, "difficulty": 6.265780448913574, "demands": 7.331029891967773, "swung": 10.045663833618164, "democrat": 8.042564392089844, "jennifer": 7.494854927062988, "commons": 7.876349925994873, "1940s": 7.901388645172119, "grove": 7.628052234649658, "##yo": 6.018103122711182, "completing": 6.956460475921631, "focuses": 6.75806999206543, "sum": 5.7067131996154785, "substitute": 6.774564743041992, "bearing": 6.805938243865967, "stretch": 6.481784820556641, "reception": 7.66546630859375, "##py": 6.125047206878662, "reflected": 7.322089672088623, "essentially": 6.388474464416504, "destination": 6.16864013671875, "pairs": 6.518805027008057, "##ched": 7.354443073272705, "survival": 6.719016075134277, "resource": 6.052127361297607, "##bach": 8.672823905944824, "promoting": 7.313907623291016, "doubles": 8.19997501373291, "messages": 6.119221210479736, "tear": 6.507827281951904, "##down": 6.848935127258301, "##fully": 7.971287727355957, "parade": 7.809792995452881, "florence": 7.807009220123291, "harvey": 7.882326126098633, "incumbent": 8.709839820861816, "partial": 6.448083877563477, "framework": 6.664793491363525, "900": 6.161160945892334, "pedro": 8.992392539978027, "frozen": 6.2390594482421875, "procedure": 5.386650562286377, "olivia": 8.549878120422363, "controls": 6.169342517852783, "##mic": 5.689507007598877, "shelter": 7.25618839263916, "personally": 7.094114303588867, "temperatures": 5.291905403137207, "##od": 5.7073259353637695, "brisbane": 8.611946105957031, "tested": 6.320143699645996, "sits": 6.871583938598633, "marble": 7.443505764007568, "comprehensive": 5.9519500732421875, "oxygen": 5.097496032714844, "leonard": 8.261977195739746, "##kov": 9.288752555847168, "inaugural": 8.574125289916992, "iranian": 8.574125289916992, "referring": 6.649215221405029, "quarters": 7.235570430755615, "attitude": 7.417562484741211, "##ivity": 6.52711820602417, "mainstream": 7.76482629776001, "lined": 7.294905662536621, "mars": 6.911871910095215, "dakota": 7.021462440490723, "norfolk": 8.291769981384277, "unsuccessful": 8.705734252929688, "##\u00b0": 5.203779220581055, "explosion": 7.733089923858643, "helicopter": 8.296294212341309, "congressional": 7.333796977996826, "##sing": 6.675405502319336, "inspector": 8.013099670410156, "bitch": 8.608842849731445, "seal": 6.227994918823242, "departed": 8.982438087463379, "divine": 7.752115726470947, "##ters": 6.553750038146973, "coaching": 7.950217247009277, "examination": 6.298386573791504, "punishment": 7.548769474029541, "manufacturer": 6.105184078216553, "sink": 6.895427227020264, "columns": 6.986963272094727, "unincorporated": 7.679315090179443, "signals": 6.463123321533203, "nevada": 6.754764556884766, "squeezed": 8.707100868225098, "dylan": 8.410993576049805, "dining": 6.842769145965576, "photos": 5.241888999938965, "martial": 7.89469051361084, "manuel": 8.909521102905273, "eighteen": 8.268129348754883, "elevator": 8.347933769226074, "brushed": 8.910358428955078, "plates": 6.583233833312988, "ministers": 8.665581703186035, "ivy": 7.806453704833984, "congregation": 9.19205379486084, "##len": 6.402637481689453, "slept": 9.039888381958008, "specialized": 6.322030544281006, "taxes": 5.36482572555542, "curve": 6.840969085693359, "restricted": 6.972620964050293, "negotiations": 8.179191589355469, "likes": 6.869078159332275, "statistical": 6.402637481689453, "arnold": 8.195045471191406, "inspiration": 7.283148765563965, "execution": 7.289589881896973, "bold": 7.101088047027588, "intermediate": 7.0112504959106445, "significance": 7.055225849151611, "margin": 6.991994857788086, "ruler": 7.4450531005859375, "wheels": 6.923408508300781, "gothic": 8.389860153198242, "intellectual": 7.121325492858887, "dependent": 5.902736186981201, "listened": 9.047547340393066, "eligible": 5.677537441253662, "buses": 7.7760820388793945, "widow": 7.940004825592041, "syria": 7.841797828674316, "earn": 5.164216041564941, "cincinnati": 7.628749847412109, "collapsed": 8.414559364318848, "recipient": 7.167315483093262, "secrets": 7.644928455352783, "accessible": 6.832436561584473, "philippine": 8.566373825073242, "maritime": 7.988136291503906, "goddess": 7.397798538208008, "clerk": 6.679537773132324, "surrender": 7.963130950927734, "breaks": 6.332028388977051, "playoff": 8.309989929199219, "database": 5.740841865539551, "##ified": 6.886862277984619, "##lon": 6.8930840492248535, "ideal": 5.759392738342285, "beetle": 8.422758102416992, "aspect": 6.625482559204102, "soap": 6.396581649780273, "regulation": 6.509192943572998, "strings": 7.5009765625, "expand": 6.386256694793701, "anglo": 7.627587795257568, "shorter": 6.3770341873168945, "crosses": 7.913374423980713, "retreat": 7.830920696258545, "tough": 6.255772113800049, "coins": 7.024762153625488, "wallace": 8.37062931060791, "directions": 5.79744815826416, "pressing": 7.156669616699219, "##oon": 6.3927226066589355, "shipping": 6.162609577178955, "locomotives": 9.801619529724121, "comparison": 6.124788761138916, "topics": 6.279141902923584, "nephew": 8.449878692626953, "##mes": 6.270074844360352, "distinction": 7.090034484863281, "honors": 7.8306355476379395, "travelled": 8.654492378234863, "sierra": 7.778780460357666, "ibn": 9.463397979736328, "##over": 6.751954078674316, "fortress": 8.718792915344238, "sa": 5.444399833679199, "recognised": 8.025127410888672, "carved": 8.027896881103516, "1869": 8.274764060974121, "clients": 6.158591270446777, "##dan": 7.697834014892578, "intent": 7.142553329467773, "##mar": 6.531378746032715, "coaches": 7.640682697296143, "describing": 7.168195724487305, "bread": 5.9878997802734375, "##ington": 8.35128116607666, "beaten": 8.254556655883789, "northwestern": 7.711130619049072, "##ona": 6.315003871917725, "merit": 7.972599029541016, "youtube": 6.344056606292725, "collapse": 7.448931694030762, "challenges": 6.778830528259277, "em": 5.133613586425781, "historians": 7.768296241760254, "objective": 6.645988941192627, "submitted": 6.383172988891602, "virus": 5.654019832611084, "attacking": 8.275651931762695, "drake": 8.374053955078125, "assume": 6.351809978485107, "##ere": 6.660633087158203, "diseases": 5.220923900604248, "marc": 7.949896335601807, "stem": 6.237264633178711, "leeds": 9.269370079040527, "##cus": 6.055738925933838, "##ab": 6.232935905456543, "farming": 7.2823262214660645, "glasses": 7.023491859436035, "##lock": 7.03408670425415, "visits": 7.013384819030762, "nowhere": 8.091222763061523, "fellowship": 8.120454788208008, "relevant": 6.345666885375977, "carries": 6.327713489532471, "restaurants": 6.2644124031066895, "experiments": 7.533429145812988, "101": 6.453742504119873, "constantly": 6.640346527099609, "bases": 6.783614158630371, "targets": 7.375524997711182, "shah": 8.413538932800293, "tenth": 7.438109397888184, "opponents": 8.194226264953613, "verse": 7.479111194610596, "territorial": 8.005273818969727, "##ira": 6.9823222160339355, "writings": 8.245466232299805, "corruption": 8.049625396728516, "##hs": 6.593092918395996, "instruction": 6.871693134307861, "inherited": 6.826475620269775, "reverse": 6.437498569488525, "emphasis": 7.1811933517456055, "##vic": 6.407014846801758, "employee": 5.402464866638184, "arch": 6.569834232330322, "keeps": 6.321967601776123, "rabbi": 9.448936462402344, "watson": 7.866271018981934, "payment": 5.226908206939697, "uh": 7.742688179016113, "##ala": 6.386256694793701, "nancy": 8.043972969055176, "##tre": 5.94956111907959, "venice": 8.040806770324707, "fastest": 6.443381309509277, "sexy": 8.16358470916748, "banned": 7.8306355476379395, "adrian": 8.739765167236328, "properly": 5.546274662017822, "ruth": 8.110239028930664, "touchdown": 9.318550109863281, "dollar": 6.01462459564209, "boards": 6.958362102508545, "metre": 7.744513988494873, "circles": 7.542135715484619, "edges": 6.712761402130127, "favour": 8.562224388122559, "comments": 5.8074469566345215, "ok": 5.7465972900390625, "travels": 6.752922534942627, "liberation": 8.661654472351074, "scattered": 7.78447151184082, "firmly": 7.705087661743164, "##ular": 5.772026538848877, "holland": 7.96867036819458, "permitted": 7.190753936767578, "diesel": 7.125816345214844, "kenya": 7.8940839767456055, "den": 6.093994140625, "originated": 6.50140380859375, "##ral": 6.080353736877441, "demons": 8.578324317932129, "resumed": 9.393095016479492, "dragged": 9.368948936462402, "rider": 7.818752765655518, "##rus": 6.546552658081055, "servant": 8.389860153198242, "blinked": 12.22224235534668, "extend": 6.3430914878845215, "torn": 7.550273895263672, "##ias": 7.385140419006348, "##sey": 8.483205795288086, "input": 6.2734880447387695, "meal": 5.8422956466674805, "everybody": 7.467761516571045, "cylinder": 6.8993449211120605, "kinds": 5.899966716766357, "camps": 7.748963356018066, "##fe": 5.5617852210998535, "bullet": 7.805342674255371, "logic": 7.311025619506836, "##wn": 7.128633499145508, "croatian": 9.232852935791016, "evolved": 6.820756912231445, "healthy": 4.885088920593262, "fool": 7.900167465209961, "chocolate": 6.424997806549072, "wise": 6.843299388885498, "preserve": 7.1448445320129395, "pradesh": 8.723648071289062, "##ess": 6.407906532287598, "respective": 7.2681169509887695, "1850": 8.02340030670166, "##ew": 6.563882827758789, "chicken": 5.440924167633057, "artificial": 6.611424446105957, "gross": 6.072277545928955, "corresponding": 6.640346527099609, "convicted": 7.379685878753662, "cage": 7.190303325653076, "caroline": 8.485942840576172, "dialogue": 8.097892761230469, "##dor": 7.743470191955566, "narrative": 7.630845546722412, "stranger": 8.332301139831543, "mario": 8.408453941345215, "br": 5.393045902252197, "christianity": 7.896817207336426, "failing": 7.693357944488525, "trent": 9.115134239196777, "commanding": 8.74614429473877, "buddhist": 8.571733474731445, "1848": 8.23049545288086, "maurice": 8.803951263427734, "focusing": 7.39835262298584, "yale": 8.3527193069458, "bike": 6.847869396209717, "altitude": 7.211684226989746, "##ering": 7.353736400604248, "mouse": 6.591031074523926, "revised": 7.208470821380615, "##sley": 7.351794719696045, "veteran": 7.129056930541992, "##ig": 5.936244964599609, "pulls": 7.751326560974121, "theology": 8.761909484863281, "crashed": 8.644808769226074, "campaigns": 7.924566745758057, "legion": 8.350323677062988, "##ability": 6.3743767738342285, "drag": 6.753697872161865, "excellence": 7.386052131652832, "customer": 5.116702079772949, "cancelled": 7.852213382720947, "intensity": 6.672272682189941, "excuse": 8.319689750671387, "##lar": 5.906385898590088, "liga": 8.571136474609375, "participating": 7.1837239265441895, "contributing": 7.484130382537842, "printing": 6.751373767852783, "##burn": 6.715464115142822, "variable": 5.968303680419922, "##rk": 7.397244930267334, "curious": 7.401312351226807, "bin": 6.962654113769531, "legacy": 7.19511604309082, "renaissance": 7.360827922821045, "##my": 6.296113967895508, "symptoms": 3.985520839691162, "binding": 6.735254287719727, "vocalist": 8.42070198059082, "dancer": 7.967690467834473, "##nie": 7.792110443115234, "grammar": 7.148003101348877, "gospel": 7.958915710449219, "democrats": 7.851341247558594, "ya": 6.197460174560547, "enters": 6.685225486755371, "sc": 4.546600818634033, "diplomatic": 8.386381149291992, "hitler": 7.751063823699951, "##ser": 5.974689483642578, "clouds": 7.198740482330322, "mathematical": 7.19511604309082, "quit": 6.998042106628418, "defended": 9.027565002441406, "oriented": 7.17585563659668, "##heim": 8.604514122009277, "fundamental": 6.492404460906982, "hardware": 6.340907573699951, "impressive": 7.101088047027588, "equally": 6.970932960510254, "convince": 8.314135551452637, "confederate": 7.6454010009765625, "guilt": 8.197917938232422, "chuck": 7.606439590454102, "sliding": 7.647294998168945, "##ware": 6.3156914710998535, "magnetic": 6.677289962768555, "narrowed": 8.397356986999512, "petersburg": 8.276985168457031, "bulgaria": 8.525634765625, "otto": 8.505870819091797, "phd": 7.514370918273926, "skill": 6.0095906257629395, "##ama": 7.07014799118042, "reader": 6.533165454864502, "hopes": 7.654189586639404, "pitcher": 8.041158676147461, "reservoir": 7.51043701171875, "hearts": 7.527105808258057, "automatically": 5.8125786781311035, "expecting": 7.854250907897949, "mysterious": 7.655622482299805, "bennett": 8.548127174377441, "extensively": 7.813143253326416, "imagined": 8.679452896118164, "seeds": 5.733754634857178, "monitor": 6.2098212242126465, "fix": 6.117218971252441, "##ative": 6.283554553985596, "journalism": 8.496411323547363, "struggling": 7.764027118682861, "signature": 6.67280912399292, "ranch": 6.920655250549316, "encounter": 7.145991802215576, "photographer": 7.934305667877197, "observation": 7.13884162902832, "protests": 8.774264335632324, "##pin": 7.3525004386901855, "influences": 7.24297571182251, "##hr": 5.93744421005249, "calendar": 6.044179439544678, "##all": 6.96134090423584, "cruz": 7.940322399139404, "croatia": 8.40137767791748, "locomotive": 9.175533294677734, "hughes": 8.285470962524414, "naturally": 5.740243434906006, "shakespeare": 7.313737869262695, "basement": 7.133724212646484, "hook": 6.829190254211426, "uncredited": 10.369182586669922, "faded": 8.996037483215332, "theories": 7.014139175415039, "approaches": 7.032932281494141, "dare": 8.637128829956055, "phillips": 8.209906578063965, "filling": 6.549156665802002, "fury": 8.868515014648438, "obama": 6.461312770843506, "##ain": 7.573110580444336, "efficient": 6.21359920501709, "arc": 6.783314228057861, "deliver": 6.235011577606201, "min": 5.93521785736084, "raid": 8.204100608825684, "breeding": 6.936824321746826, "inducted": 8.742595672607422, "leagues": 8.099381446838379, "efficiency": 6.4284234046936035, "axis": 6.6204633712768555, "montana": 7.120066165924072, "eagles": 7.826375961303711, "##ked": 8.10948657989502, "supplied": 7.004251003265381, "instructions": 5.531571865081787, "karen": 8.15685749053955, "picking": 7.444279193878174, "indicating": 7.167609214782715, "trap": 7.011626720428467, "anchor": 7.182234764099121, "practically": 7.8306355476379395, "christians": 7.8621506690979, "tomb": 8.1227388381958, "vary": 4.771595478057861, "occasional": 7.343542098999023, "electronics": 7.136564254760742, "lords": 8.873347282409668, "readers": 6.785513877868652, "newcastle": 9.238653182983398, "faint": 7.424174785614014, "innovation": 7.192556381225586, "collect": 6.18805456161499, "situations": 6.3135666847229, "engagement": 7.252509117126465, "160": 6.243240833282471, "claude": 8.870927810668945, "mixture": 5.606670379638672, "##feld": 8.389362335205078, "peer": 7.2450337409973145, "tissue": 4.952377796173096, "logo": 6.722957134246826, "lean": 6.523261070251465, "##ration": 6.4541015625, "\u00b0f": 6.734397888183594, "floors": 7.078028202056885, "##ven": 6.360867023468018, "architects": 8.100126266479492, "reducing": 6.289875507354736, "##our": 6.969969272613525, "##ments": 6.945713043212891, "rope": 7.408191204071045, "1859": 8.56045150756836, "ottawa": 8.363329887390137, "##har": 6.475672721862793, "samples": 6.851284027099609, "banking": 6.738304615020752, "declaration": 6.940206527709961, "proteins": 5.630379676818848, "resignation": 8.770614624023438, "francois": 9.140122413635254, "saudi": 7.836916923522949, "advocate": 7.681273937225342, "exhibited": 8.775727272033691, "armor": 7.7750043869018555, "twins": 7.577520370483398, "divorce": 6.525187969207764, "##ras": 6.858579158782959, "abraham": 7.311703205108643, "reviewed": 6.860950469970703, "jo": 6.193078517913818, "temporarily": 7.238715171813965, "matrix": 7.0815205574035645, "physically": 6.897439956665039, "pulse": 6.975158214569092, "curled": 9.332509994506836, "##ena": 6.869948863983154, "difficulties": 7.473121643066406, "bengal": 8.4546480178833, "usage": 5.795735836029053, "##ban": 7.946694850921631, "annie": 8.449349403381348, "riders": 7.955362796783447, "certificate": 6.04919958114624, "##pi": 5.710531711578369, "holes": 6.586099624633789, "warsaw": 8.930671691894531, "distinctive": 6.837378978729248, "jessica": 8.016179084777832, "##mon": 6.86625337600708, "mutual": 7.074681758880615, "1857": 8.605131149291992, "customs": 7.260846138000488, "circular": 6.88178014755249, "eugene": 8.351760864257812, "removal": 6.022340297698975, "loaded": 7.045833110809326, "mere": 7.52984094619751, "vulnerable": 7.363321781158447, "depicted": 7.855417251586914, "generations": 7.145704746246338, "dame": 8.390357971191406, "heir": 7.85105037689209, "enormous": 7.308658599853516, "lightly": 6.90451717376709, "climbing": 7.552426338195801, "pitched": 8.353679656982422, "lessons": 7.275604724884033, "pilots": 7.849889278411865, "nepal": 8.175568580627441, "ram": 6.671200752258301, "google": 5.598880290985107, "preparing": 6.741077423095703, "brad": 7.813982963562012, "louise": 8.409468650817871, "renowned": 7.414366245269775, "##\u2082": 11.162697792053223, "liam": 9.059146881103516, "##ably": 6.621652126312256, "plaza": 7.781757354736328, "shaw": 8.077284812927246, "sophie": 9.167916297912598, "brilliant": 7.443505764007568, "bills": 6.527504920959473, "##bar": 6.249545097351074, "##nik": 8.42172908782959, "fucking": 9.55965518951416, "mainland": 7.412303924560547, "server": 5.76590633392334, "pleasant": 7.089084625244141, "seized": 8.634581565856934, "veterans": 6.840546131134033, "jerked": 11.943219184875488, "fail": 6.781817436218262, "beta": 6.4623260498046875, "brush": 6.3885416984558105, "radiation": 6.155548095703125, "stored": 5.710019111633301, "warmth": 7.582615852355957, "southeastern": 7.2674689292907715, "nate": 9.102869987487793, "sin": 5.9923272132873535, "raced": 9.856197357177734, "berkeley": 8.30815315246582, "joke": 8.071836471557617, "athlete": 7.345642566680908, "designation": 7.391357421875, "trunk": 7.016280174255371, "##low": 6.800539016723633, "roland": 9.171174049377441, "qualification": 7.857461929321289, "archives": 7.6529974937438965, "heels": 7.969650745391846, "artwork": 8.076921463012695, "receives": 6.314815998077393, "judicial": 6.907905101776123, "reserves": 7.53237247467041, "##bed": 6.938222885131836, "woke": 8.870122909545898, "installation": 5.684635639190674, "abu": 7.763494491577148, "floating": 7.322945594787598, "fake": 7.480714797973633, "lesser": 7.106040000915527, "excitement": 7.756863594055176, "interface": 6.5010271072387695, "concentrated": 7.041299343109131, "addressed": 7.297240257263184, "characteristic": 6.36093282699585, "amanda": 8.427399635314941, "saxophone": 9.61912727355957, "monk": 8.56875228881836, "auto": 5.105932712554932, "##bus": 7.252349853515625, "releasing": 7.2579522132873535, "egg": 5.503549098968506, "dies": 6.925363063812256, "interaction": 6.850322723388672, "defender": 8.195045471191406, "ce": 4.838974952697754, "outbreak": 7.339179515838623, "glory": 7.854250907897949, "loving": 7.296072483062744, "##bert": 8.338430404663086, "sequel": 7.650379657745361, "consciousness": 7.400571823120117, "http": 5.148885726928711, "awake": 7.564785480499268, "ski": 6.666924953460693, "enrolled": 7.028711318969727, "##ress": 6.991994857788086, "handling": 6.717331886291504, "rookie": 8.167563438415527, "brow": 8.222040176391602, "somebody": 7.678581237792969, "biography": 6.916196823120117, "warfare": 7.77527379989624, "amounts": 5.3914055824279785, "contracts": 6.480824947357178, "presentation": 6.796685218811035, "fabric": 6.3308844566345215, "dissolved": 6.909376621246338, "challenged": 8.108358383178711, "meter": 6.309081554412842, "psychological": 6.631470203399658, "lt": 6.611340522766113, "elevated": 6.694320201873779, "rally": 8.11401081085205, "accurate": 5.8518500328063965, "##tha": 7.639036178588867, "hospitals": 6.46095085144043, "undergraduate": 6.565969944000244, "specialist": 6.427023887634277, "venezuela": 8.054954528808594, "exhibit": 7.167022705078125, "shed": 6.944186687469482, "nursing": 5.793469429016113, "protestant": 8.548709869384766, "fluid": 5.184417724609375, "structural": 6.500199317932129, "footage": 7.439263343811035, "jared": 8.827580451965332, "consistent": 6.545449733734131, "prey": 6.983541488647461, "##ska": 8.662961959838867, "succession": 7.957945346832275, "reflect": 6.462615966796875, "exile": 8.855740547180176, "lebanon": 8.210322380065918, "wiped": 8.713274002075195, "suspect": 7.159429550170898, "shanghai": 8.40137767791748, "resting": 7.050257682800293, "integration": 7.147284507751465, "preservation": 7.824110984802246, "marvel": 7.4567341804504395, "variant": 6.635424613952637, "pirates": 8.47125244140625, "sheep": 7.101362228393555, "rounded": 7.035884857177734, "capita": 7.490389347076416, "sailing": 7.9355692863464355, "colonies": 6.897552013397217, "manuscript": 8.718792915344238, "deemed": 7.553504467010498, "variations": 6.594249725341797, "clarke": 8.763355255126953, "functional": 6.233338832855225, "emerging": 7.510230541229248, "boxing": 8.10535717010498, "relaxed": 7.724606513977051, "curse": 8.520515441894531, "azerbaijan": 9.368948936462402, "heavyweight": 8.724343299865723, "nickname": 6.906774520874023, "editorial": 8.120454788208008, "rang": 9.0610933303833, "grid": 7.116018772125244, "tightened": 9.481032371520996, "earthquake": 7.1837239265441895, "flashed": 10.244019508361816, "miguel": 8.946183204650879, "rushing": 8.930671691894531, "##ches": 7.030627727508545, "improvements": 7.2283759117126465, "boxes": 6.820239067077637, "brooks": 8.16517448425293, "180": 6.189542770385742, "consumption": 6.175468444824219, "molecular": 6.582253456115723, "felix": 9.008899688720703, "societies": 7.691622734069824, "repeatedly": 7.635985851287842, "variation": 6.505403995513916, "aids": 6.647644519805908, "civic": 7.733864784240723, "graphics": 7.104249000549316, "professionals": 5.961606979370117, "realm": 8.019954681396484, "autonomous": 8.135011672973633, "receiver": 7.332412242889404, "delayed": 7.2380852699279785, "workshop": 8.032065391540527, "militia": 8.781603813171387, "chairs": 7.899557590484619, "trump": 6.2751688957214355, "canyon": 7.145991802215576, "##point": 6.337640762329102, "harsh": 7.16599702835083, "extending": 7.12919807434082, "lovely": 7.486952304840088, "happiness": 7.4296875, "##jan": 8.14900016784668, "stake": 7.657296180725098, "eyebrows": 8.45252513885498, "embassy": 8.024781227111816, "wellington": 8.994213104248047, "hannah": 8.583749771118164, "##ella": 6.759044170379639, "sony": 7.613057613372803, "corners": 7.434272289276123, "bishops": 9.67333698272705, "swear": 8.445131301879883, "cloth": 6.655435085296631, "contents": 6.1669135093688965, "xi": 7.594232082366943, "namely": 7.486952304840088, "commenced": 9.001529693603516, "1854": 8.575323104858398, "stanford": 8.006291389465332, "nashville": 7.312889575958252, "courage": 7.958591938018799, "graphic": 7.211224555969238, "commitment": 6.816928386688232, "garrison": 8.800942420959473, "##bin": 6.344378471374512, "hamlet": 8.3257417678833, "clearing": 7.360116481781006, "rebels": 8.95490550994873, "attraction": 7.228999137878418, "literacy": 8.118175506591797, "cooking": 5.4254961013793945, "ruins": 8.261977195739746, "temples": 8.462112426757812, "jenny": 8.56875228881836, "humanity": 7.832630157470703, "celebrate": 6.953732967376709, "hasn": 7.187905788421631, "freight": 7.526265621185303, "sixty": 8.020298957824707, "rebel": 8.404403686523438, "bastard": 9.858357429504395, "##art": 6.347925662994385, "newton": 7.359050273895264, "##ada": 7.554367542266846, "deer": 6.791234970092773, "##ges": 6.208077907562256, "##ching": 6.179773807525635, "smiles": 8.949663162231445, "delaware": 7.189703464508057, "singers": 8.186071395874023, "##ets": 6.758946895599365, "approaching": 7.924253940582275, "assists": 7.787465572357178, "flame": 7.292742729187012, "##ph": 4.710290908813477, "boulevard": 7.990137100219727, "barrel": 7.315436840057373, "planted": 7.1448445320129395, "##ome": 6.114605903625488, "pursuit": 8.046089172363281, "##sia": 7.806731700897217, "consequences": 6.898335933685303, "posts": 6.135546684265137, "shallow": 6.714717864990234, "invitation": 8.082763671875, "rode": 8.021331787109375, "depot": 7.4942450523376465, "ernest": 8.62508773803711, "kane": 8.554563522338867, "rod": 6.635769367218018, "concepts": 6.574038028717041, "preston": 9.050434112548828, "topic": 6.179391384124756, "chambers": 7.220304489135742, "striking": 7.475313663482666, "blast": 7.463217735290527, "arrives": 7.670546054840088, "descendants": 7.903223514556885, "montgomery": 7.518736839294434, "ranges": 5.6750946044921875, "worlds": 7.626194477081299, "##lay": 7.1234283447265625, "##ari": 6.2477898597717285, "span": 6.48949670791626, "chaos": 8.403899192810059, "praise": 8.051398277282715, "##ag": 6.4490132331848145, "fewer": 6.332664489746094, "1855": 8.82680892944336, "sanctuary": 8.565186500549316, "mud": 7.199194431304932, "fbi": 7.632711410522461, "##ions": 6.263283729553223, "programmes": 8.712586402893066, "maintaining": 6.526500225067139, "unity": 7.850469589233398, "harper": 8.080934524536133, "bore": 7.493838310241699, "handsome": 8.290417671203613, "closure": 7.544912338256836, "tournaments": 8.574724197387695, "thunder": 6.861706733703613, "nebraska": 7.248366832733154, "linda": 7.815663814544678, "facade": 9.37826919555664, "puts": 6.812497138977051, "satisfied": 7.544698715209961, "argentine": 9.070882797241211, "dale": 8.204100608825684, "cork": 8.066417694091797, "dome": 7.758980751037598, "panama": 7.71315336227417, "##yl": 5.52145528793335, "1858": 8.671503067016602, "tasks": 6.384981632232666, "experts": 6.053089141845703, "##ates": 6.6832356452941895, "feeding": 6.359886169433594, "equation": 6.50593376159668, "##las": 5.933295249938965, "##ida": 6.0140228271484375, "##tu": 6.234434604644775, "engage": 7.155799388885498, "bryan": 8.175166130065918, "##ax": 6.562440395355225, "um": 6.649914264678955, "quartet": 9.322338104248047, "melody": 8.409976959228516, "disbanded": 9.963117599487305, "sheffield": 9.49596881866455, "blocked": 6.94207763671875, "gasped": 12.610613822937012, "delay": 6.95444393157959, "kisses": 9.52188491821289, "maggie": 8.934956550598145, "connects": 6.655083656311035, "##non": 7.628517150878906, "sts": 9.332509994506836, "poured": 8.016179084777832, "creator": 7.3079833984375, "publishers": 7.772047519683838, "##we": 6.536983489990234, "guided": 7.626426696777344, "ellis": 8.392353057861328, "extinct": 7.754486560821533, "hug": 8.559861183166504, "gaining": 7.418315887451172, "##ord": 6.623522758483887, "complicated": 6.675315856933594, "##bility": 6.279081344604492, "poll": 6.576633453369141, "clenched": 10.640778541564941, "investigate": 7.518736839294434, "##use": 6.222621917724609, "thereby": 7.293241500854492, "quantum": 8.07437515258789, "spine": 6.308087348937988, "cdp": 7.6082611083984375, "humor": 7.688408374786377, "kills": 7.491402626037598, "administered": 6.676571369171143, "semifinals": 10.365585327148438, "##du": 5.475317478179932, "encountered": 7.634815216064453, "ignore": 7.668607711791992, "##bu": 5.395535469055176, "commentary": 8.280549049377441, "##maker": 7.27266788482666, "bother": 7.800360202789307, "roosevelt": 7.071345806121826, "140": 6.3278398513793945, "plains": 7.197077751159668, "halfway": 7.475912570953369, "flowing": 7.123568534851074, "cultures": 6.732877731323242, "crack": 6.708304405212402, "imprisoned": 9.040842056274414, "neighboring": 7.6194891929626465, "airline": 6.69495964050293, "##ses": 6.361652851104736, "##view": 6.938222885131836, "##mate": 7.2113776206970215, "##ec": 5.9002556800842285, "gather": 7.117691516876221, "wolves": 8.027203559875488, "marathon": 7.724862575531006, "transformed": 7.706092357635498, "##ill": 6.753116130828857, "cruise": 6.801962375640869, "organisations": 8.323875427246094, "carol": 7.950538158416748, "punch": 7.778240203857422, "exhibitions": 9.344078063964844, "numbered": 7.940322399139404, "alarm": 7.303773403167725, "ratings": 6.630955696105957, "daddy": 8.435705184936523, "silently": 9.734466552734375, "##stein": 7.975884437561035, "queens": 7.720774173736572, "colours": 7.748701095581055, "impression": 7.338657379150391, "guidance": 6.710066318511963, "liu": 9.502006530761719, "tactical": 8.285920143127441, "##rat": 6.21399450302124, "marshal": 8.675470352172852, "della": 9.470707893371582, "arrow": 6.7571940422058105, "##ings": 6.929631233215332, "rested": 9.206595420837402, "feared": 8.526205062866211, "tender": 6.037477970123291, "owns": 7.015398025512695, "bitter": 7.075349807739258, "advisor": 7.483124732971191, "escort": 9.31981086730957, "##ides": 6.81982421875, "spare": 7.710878372192383, "farms": 7.290584564208984, "grants": 7.170693397521973, "##ene": 6.836535930633545, "dragons": 8.148609161376953, "encourage": 6.758946895599365, "colleagues": 7.66546630859375, "cameras": 7.455755710601807, "##und": 5.982863426208496, "sucked": 9.349263191223145, "pile": 7.723838806152344, "spirits": 7.618337631225586, "prague": 8.839998245239258, "statements": 6.596566677093506, "suspension": 6.96134090423584, "landmark": 7.648480415344238, "fence": 7.191053867340088, "torture": 8.845479011535645, "recreation": 7.229311466217041, "bags": 6.695874214172363, "permanently": 7.131883144378662, "survivors": 7.882625579833984, "pond": 7.46223258972168, "spy": 7.67200231552124, "predecessor": 8.241595268249512, "bombing": 8.655790328979492, "coup": 7.090441703796387, "##og": 5.241525650024414, "protecting": 7.087188243865967, "transformation": 7.33622407913208, "glow": 7.795677185058594, "##lands": 7.84323787689209, "##book": 6.535501480102539, "dug": 8.027896881103516, "priests": 8.968132972717285, "andrea": 8.618183135986328, "feat": 8.214491844177246, "barn": 7.616038799285889, "jumping": 7.6324782371521, "##chen": 7.772047519683838, "##ologist": 7.037815093994141, "##con": 5.437330722808838, "casualties": 8.702325820922852, "stern": 7.343542098999023, "auckland": 9.015393257141113, "pipe": 6.478245258331299, "serie": 10.49578857421875, "revealing": 8.28681755065918, "ba": 5.397157192230225, "##bel": 7.766693115234375, "trevor": 9.084752082824707, "mercy": 8.323875427246094, "spectrum": 6.554782867431641, "yang": 8.358010292053223, "consist": 6.526113986968994, "governing": 7.374261856079102, "collaborated": 9.44035816192627, "possessed": 8.561041831970215, "epic": 7.005996227264404, "comprises": 7.193308353424072, "blew": 9.105921745300293, "shane": 9.046586036682129, "##ack": 7.532161235809326, "lopez": 8.496965408325195, "honored": 7.968017101287842, "magical": 7.630845546722412, "sacrifice": 8.123120307922363, "judgment": 6.769824028015137, "perceived": 7.454973220825195, "hammer": 7.332066535949707, "mtv": 8.329484939575195, "baronet": 10.804828643798828, "tune": 7.2754411697387695, "das": 8.448821067810059, "missionary": 9.079776763916016, "sheets": 6.7387824058532715, "350": 5.886557102203369, "neutral": 6.414307594299316, "oral": 5.6938982009887695, "threatening": 6.702760696411133, "attractive": 6.816308975219727, "shade": 6.8628950119018555, "aims": 7.372280120849609, "seminary": 9.539019584655762, "##master": 7.561083793640137, "estates": 7.791836738586426, "1856": 8.536529541015625, "michel": 8.487587928771973, "wounds": 7.345642566680908, "refugees": 8.68813705444336, "manufacturers": 6.457772731781006, "##nic": 6.542227268218994, "mercury": 6.898672580718994, "syndrome": 5.470845699310303, "porter": 8.139653205871582, "##iya": 8.63776683807373, "##din": 7.870112419128418, "hamburg": 9.242149353027344, "identification": 6.288839817047119, "upstairs": 9.314776420593262, "purse": 8.380444526672363, "widened": 9.67333698272705, "pause": 8.219938278198242, "cared": 8.41150188446045, "breathed": 9.453252792358398, "affiliate": 7.982819557189941, "santiago": 8.819131851196289, "prevented": 7.905674457550049, "celtic": 7.768564224243164, "fisher": 7.926757335662842, "125": 6.269059181213379, "recruited": 8.839998245239258, "byzantine": 8.735535621643066, "reconstruction": 7.711130619049072, "farther": 7.693854331970215, "##mp": 5.392126083374023, "diet": 4.730199813842773, "sake": 7.945736408233643, "au": 6.227651119232178, "spite": 8.22668170928955, "sensation": 6.448655605316162, "##ert": 6.316066741943359, "blank": 6.9437174797058105, "separation": 6.974190711975098, "105": 6.825433254241943, "##hon": 7.426452159881592, "vladimir": 8.881454467773438, "armies": 8.322012901306152, "anime": 7.890753746032715, "##lie": 7.070014953613281, "accommodate": 7.225263595581055, "orbit": 6.787216663360596, "cult": 7.130186557769775, "sofia": 9.199857711791992, "archive": 7.59243631362915, "##ify": 6.457772731781006, "##box": 6.265720844268799, "founders": 8.013099670410156, "sustained": 7.428925037384033, "disorder": 5.291141510009766, "honours": 9.648490905761719, "northeastern": 7.542989253997803, "mia": 8.392353057861328, "crops": 6.951840400695801, "violet": 7.734899044036865, "threats": 7.507342338562012, "blanket": 7.761633396148682, "fires": 7.434846878051758, "canton": 8.413029670715332, "followers": 7.65085506439209, "southwestern": 7.478711128234863, "prototype": 8.295388221740723, "voyage": 8.134625434875488, "assignment": 7.3096723556518555, "altered": 7.308152198791504, "moderate": 6.0676774978637695, "protocol": 6.757485866546631, "pistol": 8.580129623413086, "##eo": 6.909376621246338, "questioned": 8.777193069458008, "brass": 7.3775129318237305, "lifting": 7.292078018188477, "1852": 8.830670356750488, "math": 6.305049896240234, "authored": 9.07383918762207, "##ual": 6.569511890411377, "doug": 8.329484939575195, "dimensional": 7.3079833984375, "dynamic": 6.665680885314941, "##san": 7.725374698638916, "1851": 8.729923248291016, "pronounced": 6.084019660949707, "grateful": 8.589812278747559, "quest": 7.23745584487915, "uncomfortable": 7.336050510406494, "boom": 7.3694047927856445, "presidency": 7.63224458694458, "stevens": 8.342695236206055, "relating": 6.527891635894775, "politicians": 8.19997501373291, "chen": 8.555150985717773, "barrier": 6.850749969482422, "quinn": 8.675470352172852, "diana": 7.992142200469971, "mosque": 9.390382766723633, "tribal": 8.047855377197266, "cheese": 5.709371089935303, "palmer": 8.43779182434082, "portions": 6.826892852783203, "sometime": 7.685204029083252, "chester": 8.357046127319336, "treasure": 7.775812149047852, "wu": 7.751063823699951, "bend": 6.922719478607178, "download": 5.379216194152832, "millions": 6.168424129486084, "reforms": 8.458373069763184, "registration": 6.0296454429626465, "##osa": 6.849361896514893, "consequently": 7.649667263031006, "monitoring": 6.671379089355469, "ate": 6.922948837280273, "preliminary": 7.687914848327637, "brandon": 8.38886547088623, "invented": 6.529207706451416, "ps": 5.907342433929443, "eaten": 6.580947399139404, "exterior": 6.814246654510498, "intervention": 7.09547758102417, "ports": 7.176151752471924, "documented": 7.274624824523926, "log": 5.653664588928223, "displays": 6.672719478607178, "lecture": 8.200798988342285, "sally": 8.444079399108887, "favourite": 7.720519542694092, "##itz": 8.285920143127441, "vermont": 7.513126850128174, "lo": 5.354794979095459, "invisible": 7.8380632400512695, "isle": 7.642331600189209, "breed": 6.146421432495117, "##ator": 6.626506328582764, "journalists": 8.639681816101074, "relay": 7.568282604217529, "speaks": 7.604621887207031, "backward": 7.9177117347717285, "explore": 6.0982136726379395, "midfielder": 10.069412231445312, "actively": 7.398722171783447, "stefan": 8.96990966796875, "procedures": 5.826904296875, "cannon": 8.344596862792969, "blond": 8.958415985107422, "kenneth": 8.514293670654297, "centered": 7.20587682723999, "servants": 8.787514686584473, "chains": 6.8909687995910645, "libraries": 7.825525760650635, "malcolm": 8.720870971679688, "essex": 8.559861183166504, "henri": 8.836100578308105, "slavery": 7.060482501983643, "##hal": 6.992980003356934, "facts": 5.40291690826416, "fairy": 8.015151023864746, "coached": 9.678742408752441, "cassie": 10.17343807220459, "cats": 6.071101188659668, "washed": 7.672245502471924, "cop": 6.8246002197265625, "##fi": 5.074321746826172, "announcement": 7.479111194610596, "item": 5.609414100646973, "2000s": 8.37160587310791, "vinyl": 6.976005554199219, "activated": 7.211837291717529, "marco": 8.38241958618164, "frontier": 7.852503776550293, "growled": 12.513763427734375, "curriculum": 7.188205242156982, "##das": 7.657774925231934, "loyal": 7.814262866973877, "accomplished": 7.386417388916016, "leslie": 8.539994239807129, "ritual": 8.158831596374512, "kenny": 8.663616180419922, "##00": 6.00083065032959, "vii": 7.926130771636963, "napoleon": 8.221619606018066, "hollow": 7.034214973449707, "hybrid": 6.801453590393066, "jungle": 7.8306355476379395, "stationed": 8.818367004394531, "friedrich": 9.059146881103516, "counted": 7.527525901794434, "##ulated": 7.094522953033447, "platinum": 7.430449962615967, "theatrical": 8.317371368408203, "seated": 8.138103485107422, "col": 5.788323879241943, "rubber": 6.597064018249512, "glen": 7.5866217613220215, "1840": 8.456774711608887, "diversity": 6.914828777313232, "healing": 6.256420135498047, "extends": 6.61302375793457, "id": 5.2655768394470215, "provisions": 7.0033793449401855, "administrator": 6.981712818145752, "columbus": 7.2251081466674805, "##oe": 6.504119396209717, "tributary": 8.98604679107666, "te": 5.236239433288574, "assured": 8.055310249328613, "org": 5.972867012023926, "##uous": 7.356743812561035, "prestigious": 8.073287010192871, "examined": 7.463217735290527, "lectures": 8.849413871765137, "grammy": 7.832630157470703, "ronald": 7.575974941253662, "associations": 7.707852840423584, "bailey": 8.32620906829834, "allan": 8.541731834411621, "essays": 7.912755966186523, "flute": 8.769158363342285, "believing": 8.524495124816895, "consultant": 7.428925037384033, "proceedings": 7.806731700897217, "travelling": 7.470338344573975, "1853": 8.829896926879883, "kit": 6.3755717277526855, "kerala": 9.256258964538574, "yugoslavia": 9.398540496826172, "buddy": 8.148609161376953, "methodist": 8.739059448242188, "##ith": 6.535656929016113, "burial": 7.859217643737793, "centres": 8.26504898071289, "batman": 7.839498043060303, "##nda": 7.687174320220947, "discontinued": 8.153707504272461, "bo": 5.410074710845947, "dock": 7.58885383605957, "stockholm": 8.934956550598145, "lungs": 5.710394859313965, "severely": 7.593333721160889, "##nk": 7.123288154602051, "citing": 8.099754333496094, "manga": 7.355327606201172, "##ugh": 6.988065719604492, "steal": 8.054242134094238, "mumbai": 8.291318893432617, "iraqi": 8.926405906677246, "robot": 8.126558303833008, "celebrity": 7.096296787261963, "bride": 7.534910202026367, "broadcasts": 8.739059448242188, "abolished": 8.580732345581055, "pot": 5.765761852264404, "joel": 8.196685791015625, "overhead": 7.235727310180664, "franz": 8.829896926879883, "packed": 6.835588455200195, "reconnaissance": 9.397175788879395, "johann": 8.874963760375977, "acknowledged": 8.377982139587402, "introduce": 7.1196465492248535, "handled": 7.467167377471924, "doctorate": 8.067138671875, "developments": 7.888941764831543, "drinks": 6.3770341873168945, "alley": 8.384893417358398, "palestine": 8.999695777893066, "##nis": 6.969849109649658, "##aki": 8.633946418762207, "proceeded": 9.426223754882812, "recover": 6.629755973815918, "bradley": 8.404403686523438, "grain": 6.200745582580566, "patch": 6.7988128662109375, "afford": 6.813629150390625, "infection": 4.682341575622559, "nationalist": 9.068917274475098, "legendary": 7.120066165924072, "##ath": 7.117691516876221, "interchange": 7.072812080383301, "virtually": 6.8165154457092285, "gen": 5.929078578948975, "gravity": 6.684320449829102, "exploration": 7.487356185913086, "amber": 7.854834079742432, "vital": 6.038236141204834, "wishes": 7.6558613777160645, "powell": 8.543472290039062, "doctrine": 7.503641605377197, "elbow": 7.152038097381592, "screenplay": 8.60946273803711, "##bird": 7.583949089050293, "contribute": 6.161375522613525, "indonesian": 8.677459716796875, "pet": 5.65028190612793, "creates": 6.176774501800537, "##com": 5.899966716766357, "enzyme": 6.296298027038574, "kylie": 9.502006530761719, "discipline": 7.2251081466674805, "drops": 6.276010036468506, "manila": 8.632040977478027, "hunger": 7.44990348815918, "##ien": 7.922380447387695, "layers": 6.0709052085876465, "suffer": 6.409966945648193, "fever": 5.571844577789307, "bits": 7.176003456115723, "monica": 8.202448844909668, "keyboard": 6.682603359222412, "manages": 7.652521133422852, "##hood": 7.715940952301025, "searched": 7.768296241760254, "appeals": 7.508991718292236, "##bad": 8.786773681640625, "testament": 7.594681739807129, "grande": 7.6068949699401855, "reid": 8.7525634765625, "##war": 7.717718601226807, "beliefs": 7.102048873901367, "congo": 8.200386047363281, "##ification": 6.891079902648926, "##dia": 6.3923845291137695, "si": 5.447414875030518, "requiring": 6.866361618041992, "##via": 6.876175880432129, "casey": 8.65904426574707, "1849": 8.800191879272461, "regret": 8.62257194519043, "streak": 8.158831596374512, "rape": 7.883225440979004, "depends": 4.880833625793457, "syrian": 8.747567176818848, "sprint": 7.524587631225586, "pound": 5.74546480178833, "tourists": 7.63224458694458, "upcoming": 6.6411261558532715, "pub": 6.6435546875, "##xi": 5.977629661560059, "tense": 7.671759605407715, "##els": 7.004624366760254, "practiced": 7.897120952606201, "echo": 7.476111888885498, "nationwide": 6.63792610168457, "guild": 8.317834854125977, "motorcycle": 7.327754020690918, "liz": 8.872540473937988, "##zar": 8.025127410888672, "chiefs": 8.554563522338867, "desired": 6.1616435050964355, "elena": 9.306026458740234, "bye": 8.569348335266113, "precious": 7.508785247802734, "absorbed": 6.552163600921631, "relatives": 7.448737144470215, "booth": 8.099754333496094, "pianist": 8.898695945739746, "##mal": 6.163146495819092, "citizenship": 7.216446876525879, "exhausted": 8.572331428527832, "wilhelm": 8.88553237915039, "##ceae": 7.720009803771973, "##hed": 7.288761615753174, "noting": 8.202860832214355, "quarterback": 7.838923931121826, "urge": 7.717210292816162, "hectares": 8.90284538269043, "##gue": 8.007649421691895, "ace": 5.986728191375732, "holly": 8.16279125213623, "##tal": 5.7759575843811035, "blonde": 8.279657363891602, "davies": 9.395813941955566, "parked": 8.738353729248047, "sustainable": 7.500158309936523, "stepping": 8.431024551391602, "twentieth": 7.91461181640625, "airfield": 9.617426872253418, "galaxy": 6.825537204742432, "nest": 6.8789191246032715, "chip": 6.6093244552612305, "##nell": 8.061386108398438, "tan": 6.50828218460083, "shaft": 7.250117301940918, "paulo": 9.165750503540039, "requirement": 6.282041549682617, "##zy": 7.078564643859863, "paradise": 7.695344924926758, "tobacco": 6.91278076171875, "trans": 5.598574638366699, "renewed": 7.333450794219971, "vietnamese": 8.214491844177246, "##cker": 7.698332786560059, "##ju": 6.393804550170898, "suggesting": 7.995492935180664, "catching": 7.732058048248291, "holmes": 8.338903427124023, "enjoying": 7.733089923858643, "md": 6.0720319747924805, "trips": 7.31136417388916, "colt": 8.895389556884766, "holder": 6.959314346313477, "butterfly": 7.666914939880371, "nerve": 5.398806571960449, "reformed": 9.368948936462402, "cherry": 7.494651794433594, "bowling": 8.319225311279297, "trailer": 6.834536552429199, "carriage": 8.36575698852539, "goodbye": 8.332771301269531, "appreciate": 7.361361503601074, "toy": 7.249321460723877, "joshua": 8.437270164489746, "interactive": 6.781817436218262, "enabled": 7.009746551513672, "involve": 6.377300262451172, "##kan": 7.730511665344238, "collar": 7.262779712677002, "determination": 7.045313835144043, "bunch": 7.174821376800537, "facebook": 5.752208709716797, "recall": 7.399831295013428, "shorts": 8.21825885772705, "superintendent": 8.445657730102539, "episcopal": 9.404016494750977, "frustration": 8.40137767791748, "giovanni": 9.357090950012207, "nineteenth": 7.9595627784729, "laser": 6.84829568862915, "privately": 7.6037139892578125, "array": 6.562680244445801, "circulation": 6.554703235626221, "##ovic": 9.809823989868164, "armstrong": 8.231345176696777, "deals": 6.301527500152588, "painful": 6.017127990722656, "permit": 6.421444892883301, "discrimination": 7.288265228271484, "##wi": 6.623522758483887, "aires": 9.228236198425293, "retiring": 8.665581703186035, "cottage": 7.863619804382324, "ni": 5.4394121170043945, "##sta": 6.144152641296387, "horizon": 7.649667263031006, "ellen": 8.061386108398438, "jamaica": 7.736710548400879, "ripped": 8.763355255126953, "fernando": 9.009824752807617, "chapters": 7.8853278160095215, "playstation": 7.910595417022705, "patron": 7.78094482421875, "lecturer": 9.112053871154785, "navigation": 6.795067310333252, "behaviour": 7.305791854858398, "genes": 6.321023941040039, "georgian": 9.170086860656738, "export": 6.8148651123046875, "solomon": 8.496965408325195, "rivals": 8.392851829528809, "swift": 7.458890438079834, "seventeen": 8.615059852600098, "rodriguez": 8.744013786315918, "princeton": 7.297908782958984, "independently": 7.366537570953369, "sox": 8.479931831359863, "1847": 8.730623245239258, "arguing": 8.829896926879883, "entity": 6.461529731750488, "casting": 7.6324782371521, "hank": 7.854250907897949, "criteria": 6.197126865386963, "oakland": 7.807287216186523, "geographic": 6.773970603942871, "milwaukee": 7.894387245178223, "reflection": 7.618567943572998, "expanding": 7.319013595581055, "conquest": 7.99180793762207, "dubbed": 8.13231372833252, "##tv": 7.506518840789795, "halt": 8.216583251953125, "brave": 7.880529403686523, "brunswick": 8.372584342956543, "doi": 8.917927742004395, "arched": 9.528081893920898, "curtis": 8.74970531463623, "divorced": 7.738007068634033, "predominantly": 7.506518840789795, "somerset": 8.88880729675293, "streams": 7.288596153259277, "ugly": 8.164379119873047, "zoo": 6.982565879821777, "horrible": 8.159622192382812, "curved": 7.5788469314575195, "buenos": 9.221351623535156, "fierce": 8.312751770019531, "dictionary": 5.183913230895996, "vector": 7.391357421875, "theological": 9.007975578308105, "unions": 7.82269811630249, "handful": 7.434080600738525, "stability": 6.913008213043213, "chan": 7.507960319519043, "punjab": 9.151786804199219, "segments": 7.181937217712402, "##lly": 7.717973232269287, "altar": 8.988761901855469, "ignoring": 8.80923843383789, "gesture": 8.59836196899414, "monsters": 8.30815315246582, "pastor": 8.191364288330078, "##stone": 7.794303894042969, "thighs": 7.563695430755615, "unexpected": 7.540005207061768, "operators": 7.445827484130859, "abruptly": 8.829124450683594, "coin": 7.077090263366699, "compiled": 7.151028156280518, "associates": 7.2467780113220215, "improving": 6.823248386383057, "migration": 7.5199875831604, "pin": 5.676018238067627, "##ose": 6.3221564292907715, "compact": 6.594745635986328, "collegiate": 8.59529972076416, "reserved": 6.684049129486084, "##urs": 7.347923278808594, "quarterfinals": 11.336292266845703, "roster": 7.971287727355957, "restore": 6.598391532897949, "assembled": 7.876349925994873, "hurry": 8.618183135986328, "oval": 7.3384833335876465, "##cies": 7.036270618438721, "1846": 8.493093490600586, "flags": 7.270064830780029, "martha": 8.128856658935547, "##del": 6.479645252227783, "victories": 8.837657928466797, "sharply": 8.47612476348877, "##rated": 7.357452869415283, "argues": 8.584354400634766, "deadly": 7.260684967041016, "neo": 6.970210075378418, "drawings": 7.817909240722656, "symbols": 6.684953689575195, "performer": 8.104608535766602, "##iel": 7.7841997146606445, "griffin": 8.575922966003418, "restrictions": 6.880018711090088, "editing": 7.431977272033691, "andrews": 8.608222961425781, "java": 6.682242393493652, "journals": 8.320618629455566, "arabia": 7.791836738586426, "compositions": 8.724343299865723, "dee": 7.768564224243164, "pierce": 7.8314900398254395, "removing": 6.329043865203857, "hindi": 7.748176574707031, "casino": 7.42797327041626, "runway": 8.544052124023438, "civilians": 8.518814086914062, "minds": 7.463217735290527, "nasa": 7.249639511108398, "hotels": 6.152514457702637, "##zation": 7.0088701248168945, "refuge": 8.492541313171387, "rent": 5.885702133178711, "retain": 6.854066848754883, "potentially": 6.398346900939941, "conferences": 8.43779182434082, "suburban": 7.7841997146606445, "conducting": 7.403166770935059, "##tto": 7.918954849243164, "##tions": 7.099579811096191, "##tle": 7.457910060882568, "descended": 8.26329231262207, "massacre": 8.469633102416992, "##cal": 5.913056373596191, "ammunition": 8.836100578308105, "terrain": 7.5436296463012695, "fork": 6.861382484436035, "souls": 8.348411560058594, "counts": 7.116715431213379, "chelsea": 8.59897518157959, "durham": 8.574724197387695, "drives": 6.883544921875, "cab": 6.826788425445557, "##bank": 7.7473907470703125, "perth": 8.481021881103516, "realizing": 8.860511779785156, "palestinian": 9.644990921020508, "finn": 8.319689750671387, "simpson": 7.998518466949463, "##dal": 7.196020603179932, "betty": 8.482112884521484, "##ule": 6.607731342315674, "moreover": 7.629913330078125, "particles": 6.2451629638671875, "cardinals": 8.631406784057617, "tent": 7.924253940582275, "evaluation": 6.347021579742432, "extraordinary": 7.620642185211182, "##oid": 5.761079788208008, "inscription": 9.431854248046875, "##works": 7.8137030601501465, "wednesday": 6.062321662902832, "chloe": 9.259818077087402, "maintains": 7.1495866775512695, "panels": 7.07977294921875, "ashley": 8.260663986206055, "trucks": 7.061800956726074, "##nation": 6.611424446105957, "cluster": 7.394297122955322, "sunlight": 6.614709854125977, "strikes": 7.625730514526367, "zhang": 9.889095306396484, "##wing": 7.268279075622559, "dialect": 7.88412618637085, "canon": 7.937784671783447, "##ap": 5.571666240692139, "tucked": 8.763355255126953, "##ws": 6.96169900894165, "collecting": 7.163218975067139, "##mas": 6.832331657409668, "##can": 6.36093282699585, "##sville": 7.449514865875244, "maker": 7.097526550292969, "quoted": 7.526265621185303, "evan": 8.302661895751953, "franco": 8.597748756408691, "aria": 8.123120307922363, "buying": 5.974466800689697, "cleaning": 6.085012435913086, "eva": 6.529284954071045, "closet": 7.868337631225586, "provision": 7.160157203674316, "apollo": 8.025472640991211, "clinic": 6.295745849609375, "rat": 6.904292106628418, "##ez": 7.395585536956787, "necessarily": 6.40468692779541, "ac": 4.891739368438721, "##gle": 7.3503851890563965, "##ising": 7.677359580993652, "venues": 8.128473281860352, "flipped": 9.52188491821289, "cent": 6.050110340118408, "spreading": 7.234002113342285, "trustees": 8.406427383422852, "checking": 6.478466510772705, "authorized": 6.653591156005859, "##sco": 6.93624210357666, "disappointed": 8.511478424072266, "##ado": 7.458890438079834, "notion": 7.693854331970215, "duration": 6.08292818069458, "trumpet": 8.703006744384766, "hesitated": 11.384845733642578, "topped": 7.552210807800293, "brussels": 8.141204833984375, "rolls": 7.310348987579346, "theoretical": 7.5951313972473145, "hint": 7.728710651397705, "define": 5.834493160247803, "aggressive": 7.1190876960754395, "repeat": 6.490092754364014, "wash": 5.850670337677002, "peaceful": 7.84814977645874, "optical": 7.228531360626221, "width": 6.036720275878906, "allegedly": 8.25586223602295, "mcdonald": 7.447378635406494, "strict": 7.002011299133301, "copyright": 6.550817489624023, "##illa": 6.553829669952393, "investors": 6.768150329589844, "mar": 5.84280252456665, "jam": 6.968165397644043, "witnesses": 8.150567054748535, "sounding": 8.300838470458984, "miranda": 8.633310317993164, "michelle": 7.823262691497803, "privacy": 6.460444450378418, "hugo": 8.995124816894531, "harmony": 7.765625953674316, "##pp": 6.193023204803467, "valid": 5.872962951660156, "lynn": 8.246759414672852, "glared": 12.796330451965332, "nina": 8.785293579101562, "102": 6.781219482421875, "headquartered": 7.421335697174072, "diving": 7.941593647003174, "boarding": 7.840359687805176, "gibson": 8.333711624145508, "##ncy": 6.861598491668701, "albanian": 9.577454566955566, "marsh": 7.786920547485352, "routine": 6.476407051086426, "dealt": 8.177177429199219, "enhanced": 7.151749610900879, "er": 5.177437782287598, "intelligent": 7.466771602630615, "substance": 5.52997350692749, "targeted": 7.551564693450928, "enlisted": 8.039052963256836, "discovers": 8.774264335632324, "spinning": 7.683974266052246, "observations": 7.254587173461914, "pissed": 10.358429908752441, "smoking": 6.455323696136475, "rebecca": 8.45252513885498, "capitol": 7.615808963775635, "visa": 6.43898344039917, "varied": 6.989291667938232, "costume": 8.116280555725098, "seemingly": 7.815383434295654, "indies": 8.5359525680542, "compensation": 6.095901012420654, "surgeon": 6.671647071838379, "thursday": 6.008255481719971, "arsenal": 8.59163761138916, "westminster": 8.564593315124512, "suburbs": 8.102738380432129, "rid": 6.171290397644043, "anglican": 9.55965518951416, "##ridge": 7.752378940582275, "knots": 7.999865531921387, "foods": 4.6291351318359375, "alumni": 8.376015663146973, "lighter": 6.791436195373535, "fraser": 9.044668197631836, "whoever": 8.680118560791016, "portal": 7.277403354644775, "scandal": 8.094182014465332, "##ray": 7.866566181182861, "gavin": 9.561260223388672, "advised": 7.440610885620117, "instructor": 7.402795791625977, "flooding": 7.731026649475098, "terrorist": 8.301750183105469, "##ale": 7.106591701507568, "teenage": 7.801465034484863, "interim": 8.359941482543945, "senses": 7.018930912017822, "duck": 7.335703372955322, "teen": 7.0586395263671875, "thesis": 7.922380447387695, "abby": 9.032286643981934, "eager": 8.175568580627441, "overcome": 7.469743251800537, "##ile": 5.720590591430664, "newport": 8.343646049499512, "glenn": 8.194226264953613, "rises": 6.702945232391357, "shame": 7.979841709136963, "##cc": 5.911885738372803, "prompted": 7.684711456298828, "priority": 6.961221694946289, "forgot": 8.167962074279785, "bomber": 9.383634567260742, "nicolas": 9.148591995239258, "protective": 6.596235275268555, "360": 6.560440540313721, "cartoon": 7.806731700897217, "katherine": 8.490887641906738, "breeze": 7.753695964813232, "lonely": 8.448293685913086, "trusted": 6.883986473083496, "henderson": 8.35128116607666, "richardson": 8.681449890136719, "relax": 6.6925859451293945, "banner": 8.007309913635254, "candy": 7.072945594787598, "palms": 7.8787360191345215, "remarkable": 7.560431480407715, "##rio": 6.779626369476318, "legends": 7.764027118682861, "cricketer": 10.52905559539795, "essay": 6.833906173706055, "ordained": 9.497474670410156, "edmund": 8.432063102722168, "rifles": 8.909521102905273, "trigger": 6.603884696960449, "##uri": 5.949300765991211, "##away": 7.157830715179443, "sail": 7.759775638580322, "alert": 6.225076198577881, "1830": 8.530780792236328, "audiences": 8.046794891357422, "penn": 7.150163173675537, "sussex": 9.06695556640625, "siblings": 7.710625648498535, "pursued": 8.718792915344238, "indianapolis": 7.751852512359619, "resist": 7.04168701171875, "rosa": 7.427022457122803, "consequence": 7.680049419403076, "succeed": 7.682254791259766, "avoided": 7.599864959716797, "1845": 8.640961647033691, "##ulation": 7.031523704528809, "inland": 7.5955810546875, "##tie": 7.719245433807373, "##nna": 7.5563130378723145, "counsel": 7.594232082366943, "profession": 6.900916576385498, "chronicle": 8.628874778747559, "hurried": 10.699189186096191, "##una": 7.492213726043701, "eyebrow": 9.053330421447754, "eventual": 8.431024551391602, "bleeding": 5.9125542640686035, "innovative": 6.963013172149658, "cure": 6.389349460601807, "##dom": 7.190303325653076, "committees": 8.18242359161377, "accounting": 6.115527153015137, "con": 4.217504978179932, "scope": 6.606140613555908, "hardy": 7.52984094619751, "heather": 8.526205062866211, "tenor": 8.904510498046875, "gut": 6.717425346374512, "herald": 8.165969848632812, "codes": 5.664860725402832, "tore": 9.112053871154785, "scales": 7.13884162902832, "wagon": 8.303118705749512, "##oo": 7.086917877197266, "luxury": 6.652801990509033, "tin": 6.291034698486328, "prefer": 5.9563517570495605, "fountain": 8.182827949523926, "triangle": 6.994335651397705, "bonds": 6.162878036499023, "darling": 8.900354385375977, "convoy": 10.197427749633789, "dried": 6.31107234954834, "traced": 7.850469589233398, "beings": 7.416057109832764, "troy": 7.798153400421143, "accidentally": 7.807287216186523, "slam": 8.470172882080078, "findings": 6.912667274475098, "smelled": 9.724961280822754, "joey": 8.610082626342773, "lawyers": 7.418504238128662, "outcome": 7.06881856918335, "steep": 7.061537265777588, "bosnia": 9.198739051818848, "configuration": 6.717799186706543, "shifting": 8.076557159423828, "toll": 6.415896892547607, "brook": 7.921756744384766, "performers": 8.262853622436523, "lobby": 8.129240036010742, "philosophical": 8.016864776611328, "construct": 7.166583061218262, "shrine": 8.968132972717285, "aggregate": 7.201770782470703, "boot": 6.758265018463135, "cox": 7.913374423980713, "phenomenon": 6.9733452796936035, "savage": 8.670843124389648, "insane": 8.378474235534668, "solely": 7.230716228485107, "reynolds": 8.418649673461914, "lifestyle": 6.31688117980957, "##ima": 6.685044288635254, "nationally": 7.439263343811035, "holdings": 7.833771705627441, "consideration": 6.791536808013916, "enable": 6.3318376541137695, "edgar": 8.459440231323242, "mo": 4.8443474769592285, "mama": 8.247191429138184, "##tein": 7.631311416625977, "fights": 7.993816375732422, "relegation": 11.435877799987793, "chances": 6.632929801940918, "atomic": 6.6538543701171875, "hub": 6.68803596496582, "conjunction": 7.036913871765137, "awkward": 8.317371368408203, "reactions": 5.955173015594482, "currency": 6.238480091094971, "finale": 7.770438194274902, "kumar": 9.404016494750977, "underwent": 8.734129905700684, "steering": 7.475512981414795, "elaborate": 7.835485935211182, "gifts": 7.21536922454834, "comprising": 7.670303821563721, "melissa": 8.37160587310791, "veins": 6.563401699066162, "reasonable": 6.557806968688965, "sunshine": 6.741843223571777, "chi": 5.911760330200195, "solve": 6.611172199249268, "trails": 7.467761516571045, "inhabited": 7.976213455200195, "elimination": 7.637627124786377, "ethics": 7.386964797973633, "huh": 10.080150604248047, "ana": 5.873485565185547, "molly": 8.740472793579102, "consent": 6.929400444030762, "apartments": 7.2453508377075195, "layout": 7.005247592926025, "marines": 8.16636848449707, "##ces": 5.982504844665527, "hunters": 7.99180793762207, "bulk": 6.721547603607178, "##oma": 6.0076117515563965, "hometown": 8.032413482666016, "##wall": 6.909829616546631, "##mont": 7.807009220123291, "cracked": 7.6303791999816895, "reads": 7.403352737426758, "neighbouring": 8.99695110321045, "withdrawn": 8.363329887390137, "admission": 6.6956000328063965, "wingspan": 8.874963760375977, "damned": 9.982511520385742, "anthology": 9.296119689941406, "lancashire": 9.453252792358398, "brands": 6.272408962249756, "batting": 8.716719627380371, "forgive": 9.244487762451172, "cuban": 8.00561237335205, "awful": 8.299927711486816, "##lyn": 8.497519493103027, "104": 6.619869709014893, "dimensions": 6.679447650909424, "imagination": 7.74948787689209, "##ade": 7.186410427093506, "dante": 9.376932144165039, "##ship": 7.515823841094971, "tracking": 6.924098014831543, "desperately": 9.21565055847168, "goalkeeper": 10.002289772033691, "##yne": 7.387147426605225, "groaned": 12.680817604064941, "workshops": 8.59652328491211, "confident": 7.709616661071777, "burton": 8.64288330078125, "gerald": 8.465866088867188, "milton": 8.52849006652832, "circus": 8.618183135986328, "uncertain": 7.72332763671875, "slope": 7.175264835357666, "copenhagen": 8.88553237915039, "sophia": 8.910358428955078, "fog": 7.4541916847229, "philosopher": 7.919887542724609, "portraits": 9.023804664611816, "accent": 7.465585708618164, "cycling": 7.877542018890381, "varying": 6.795067310333252, "gripped": 10.599105834960938, "larvae": 7.758715629577637, "garrett": 8.863704681396484, "specified": 6.163898944854736, "scotia": 8.41150188446045, "mature": 6.391777038574219, "luther": 7.737747669219971, "kurt": 8.38241958618164, "rap": 6.946888446807861, "##kes": 7.485742092132568, "aerial": 7.868633270263672, "750": 6.5523223876953125, "ferdinand": 8.568157196044922, "heated": 6.812702655792236, "es": 5.048654556274414, "transported": 7.430449962615967, "##shan": 8.88880729675293, "safely": 6.670933246612549, "nonetheless": 8.229222297668457, "##orn": 7.35197114944458, "##gal": 7.4070725440979, "motors": 7.288761615753174, "demanding": 7.980502605438232, "##sburg": 7.866566181182861, "startled": 10.2313814163208, "##brook": 8.249784469604492, "ally": 8.173561096191406, "generate": 6.502911567687988, "caps": 7.104524612426758, "ghana": 8.58859634399414, "stained": 8.02997875213623, "demo": 7.353912830352783, "mentions": 8.416090965270996, "beds": 7.0524773597717285, "ap": 5.473968505859375, "afterward": 8.419675827026367, "diary": 8.241166114807129, "##bling": 7.435997009277344, "utility": 6.468066215515137, "##iro": 7.743991851806641, "richards": 9.034181594848633, "1837": 8.56281566619873, "conspiracy": 8.456774711608887, "conscious": 7.476111888885498, "shining": 8.312751770019531, "footsteps": 9.139068603515625, "observer": 8.277874946594238, "cyprus": 8.636491775512695, "urged": 8.86450481414795, "loyalty": 7.815944194793701, "developer": 7.156669616699219, "probability": 7.314247131347656, "olive": 6.157148361206055, "upgraded": 8.02236557006836, "gym": 6.983541488647461, "miracle": 8.066778182983398, "insects": 6.476039409637451, "graves": 7.950217247009277, "1844": 8.974366188049316, "ourselves": 7.680539131164551, "hydrogen": 5.896833896636963, "amazon": 6.01420783996582, "katie": 8.537105560302734, "tickets": 6.29396915435791, "poets": 8.55868148803711, "##pm": 6.194518566131592, "planes": 7.748176574707031, "##pan": 6.396513938903809, "prevention": 6.237785816192627, "witnessed": 8.456774711608887, "dense": 6.531378746032715, "jin": 8.539416313171387, "randy": 8.579527854919434, "tang": 7.663778781890869, "warehouse": 7.565221786499023, "monroe": 7.56282377243042, "bang": 7.597382545471191, "archived": 8.715340614318848, "elderly": 7.009370803833008, "investigations": 8.05246353149414, "alec": 9.401274681091309, "granite": 7.30495023727417, "mineral": 5.990336894989014, "conflicts": 7.841797828674316, "controlling": 6.959195613861084, "aboriginal": 8.346502304077148, "carlo": 9.001529693603516, "##zu": 7.365464687347412, "mechanics": 7.440225601196289, "stan": 7.732573986053467, "stark": 8.026511192321777, "rhode": 7.561953544616699, "skirt": 8.106481552124023, "est": 5.551884174346924, "##berry": 7.068154335021973, "bombs": 8.268129348754883, "respected": 7.897120952606201, "##horn": 8.043620109558105, "imposed": 7.451266288757324, "limestone": 7.5556640625, "deny": 8.065337181091309, "nominee": 8.297201156616211, "memphis": 7.760040760040283, "grabbing": 9.190943717956543, "disabled": 6.871038913726807, "##als": 6.981347560882568, "amusement": 8.316446304321289, "aa": 6.368159294128418, "frankfurt": 8.891270637512207, "corn": 5.672855377197266, "referendum": 8.846264839172363, "varies": 5.528719902038574, "slowed": 8.483752250671387, "disk": 6.495994567871094, "firms": 6.975400447845459, "unconscious": 7.839498043060303, "incredible": 7.069482803344727, "clue": 7.606212139129639, "sue": 7.615579605102539, "##zhou": 9.448936462402344, "twist": 7.261973857879639, "##cio": 8.670184135437012, "joins": 7.511057376861572, "idaho": 7.16248893737793, "chad": 8.212821960449219, "developers": 7.3313751220703125, "computing": 7.16292667388916, "destroyer": 9.485489845275879, "103": 7.113931655883789, "mortal": 8.701645851135254, "tucker": 9.041797637939453, "kingston": 8.643525123596191, "choices": 6.115783214569092, "yu": 6.980617523193359, "carson": 8.239879608154297, "1800": 7.266982555389404, "os": 4.924832820892334, "whitney": 8.322012901306152, "geneva": 8.29947280883789, "pretend": 8.51711654663086, "dimension": 7.485137462615967, "staged": 9.143289566040039, "plateau": 7.683728218078613, "maya": 7.688901901245117, "##une": 7.200709342956543, "freestyle": 9.10185432434082, "##bc": 7.444665908813477, "rovers": 10.504002571105957, "hiv": 6.671825885772705, "##ids": 6.063973903656006, "tristan": 9.958327293395996, "classroom": 6.90451717376709, "prospect": 7.859803199768066, "##hus": 8.345549583435059, "honestly": 8.287266731262207, "diploma": 7.229935646057129, "lied": 9.486980438232422, "thermal": 6.87267541885376, "auxiliary": 8.4398832321167, "feast": 8.011734008789062, "unlikely": 7.137417316436768, "iata": 8.292222023010254, "##tel": 7.455364227294922, "morocco": 8.274320602416992, "pounding": 8.75471305847168, "treasury": 7.373721122741699, "lithuania": 8.976154327392578, "considerably": 7.173640251159668, "1841": 8.977049827575684, "dish": 5.847531318664551, "1812": 8.296748161315918, "geological": 7.566751003265381, "matching": 7.158121109008789, "stumbled": 9.454695701599121, "destroying": 8.190956115722656, "marched": 9.46924114227295, "brien": 8.903677940368652, "advances": 7.605757713317871, "cake": 6.79325008392334, "nicole": 8.075101852416992, "belle": 8.222040176391602, "settling": 8.328547477722168, "measuring": 6.234203815460205, "directing": 8.284126281738281, "##mie": 8.305403709411621, "tuesday": 5.995365619659424, "bassist": 8.989667892456055, "capabilities": 7.075216293334961, "stunned": 9.423420906066895, "fraud": 7.114348888397217, "torpedo": 9.63111400604248, "##list": 6.219718933105469, "##phone": 7.68250036239624, "anton": 8.590420722961426, "wisdom": 7.156524658203125, "surveillance": 8.02755069732666, "ruined": 8.962821006774902, "##ulate": 7.074414253234863, "lawsuit": 7.4237961769104, "healthcare": 5.928951263427734, "theorem": 8.418649673461914, "halls": 8.529634475708008, "trend": 6.427443504333496, "aka": 6.963013172149658, "horizontal": 6.703313827514648, "dozens": 7.416997909545898, "acquire": 7.094386577606201, "lasting": 6.644336700439453, "swim": 7.031395435333252, "hawk": 8.010370254516602, "gorgeous": 7.690385341644287, "fees": 5.266562461853027, "vicinity": 8.493093490600586, "decrease": 5.932143211364746, "adoption": 7.118947982788086, "tactics": 8.133084297180176, "##ography": 7.143125534057617, "pakistani": 9.341495513916016, "##ole": 6.685497283935547, "draws": 7.555015563964844, "##hall": 8.518248558044434, "willie": 8.603280067443848, "burke": 8.6416015625, "heath": 8.03276252746582, "algorithm": 8.003580093383789, "integral": 7.222625732421875, "powder": 5.6954450607299805, "elliott": 8.71948528289795, "brigadier": 9.724961280822754, "jackie": 8.261977195739746, "tate": 8.676133155822754, "varieties": 6.295684814453125, "darker": 7.298577308654785, "##cho": 6.40018367767334, "lately": 8.080934524536133, "cigarette": 7.527946472167969, "specimens": 7.975226402282715, "adds": 6.447941303253174, "##ree": 7.25955867767334, "##ensis": 8.484299659729004, "##inger": 8.480476379394531, "exploded": 8.839998245239258, "finalist": 9.822259902954102, "cia": 7.633646011352539, "murders": 8.572929382324219, "wilderness": 7.944778919219971, "arguments": 7.5457682609558105, "nicknamed": 8.150959014892578, "acceptance": 7.10977029800415, "onwards": 8.77792739868164, "manufacture": 6.955273628234863, "robertson": 8.832993507385254, "jets": 8.128089904785156, "tampa": 7.546196460723877, "enterprises": 7.915230751037598, "blog": 6.233223915100098, "loudly": 9.554855346679688, "composers": 8.738353729248047, "nominations": 8.38538932800293, "1838": 8.941850662231445, "ai": 6.436580181121826, "malta": 8.635854721069336, "inquiry": 7.820159912109375, "automobile": 7.233688831329346, "hosting": 7.487356185913086, "viii": 8.237738609313965, "rays": 6.600551605224609, "tilted": 8.766252517700195, "grief": 8.277874946594238, "museums": 7.979181289672852, "strategies": 6.705528736114502, "furious": 8.6975736618042, "euro": 7.178076267242432, "equality": 7.739564895629883, "cohen": 8.624458312988281, "poison": 7.063253402709961, "surrey": 9.268171310424805, "wireless": 6.1520891189575195, "governed": 7.527316093444824, "ridiculous": 8.25935173034668, "moses": 8.446184158325195, "##esh": 8.178788185119629, "##room": 7.535969257354736, "vanished": 9.644990921020508, "##ito": 6.69752311706543, "barnes": 8.686796188354492, "attract": 7.1550750732421875, "morrison": 8.68947982788086, "istanbul": 8.981537818908691, "##iness": 6.559322357177734, "absent": 7.4709343910217285, "rotation": 6.895092487335205, "petition": 7.310348987579346, "janet": 8.62697982788086, "##logical": 7.2210774421691895, "satisfaction": 7.20192289352417, "custody": 7.261007308959961, "deliberately": 8.5137300491333, "observatory": 8.676133155822754, "comedian": 7.7123942375183105, "surfaces": 6.452665328979492, "pinyin": 9.20209789276123, "novelist": 8.618183135986328, "strictly": 7.37354040145874, "canterbury": 9.535881996154785, "oslo": 9.380949020385742, "monks": 9.281439781188965, "embrace": 8.096406936645508, "ibm": 7.972599029541016, "jealous": 9.034181594848633, "photograph": 7.38586950302124, "continent": 6.81951379776001, "dorothy": 8.662307739257812, "marina": 6.917680740356445, "doc": 6.84765625, "excess": 5.735188961029053, "holden": 9.269370079040527, "allegations": 8.672823905944824, "explaining": 7.643274784088135, "stack": 7.265525817871094, "avoiding": 7.424174785614014, "lance": 8.084596633911133, "storyline": 8.583145141601562, "majesty": 9.112053871154785, "poorly": 7.509817600250244, "spike": 7.893174648284912, "dos": 6.111183166503906, "bradford": 8.953154563903809, "raven": 8.357528686523438, "travis": 8.460508346557617, "classics": 8.374053955078125, "proven": 6.676123142242432, "voltage": 6.523569107055664, "pillow": 8.109109878540039, "fists": 9.97276782989502, "butt": 6.934963226318359, "1842": 9.043709754943848, "interpreted": 7.831204891204834, "##car": 6.675943374633789, "1839": 8.880640983581543, "gage": 9.19205379486084, "telegraph": 8.389860153198242, "lens": 6.833486080169678, "promising": 8.16716480255127, "expelled": 8.487039566040039, "casual": 7.247572422027588, "collector": 7.7223052978515625, "zones": 6.607480049133301, "##min": 6.316066741943359, "silly": 8.336068153381348, "nintendo": 7.993481159210205, "##kh": 7.724606513977051, "##bra": 6.312131881713867, "downstairs": 9.854042053222656, "chef": 7.465980529785156, "suspicious": 8.354640007019043, "afl": 8.299017906188965, "flies": 7.392091751098633, "vacant": 8.497519493103027, "uganda": 8.521082878112793, "pregnancy": 5.372713565826416, "condemned": 9.394453048706055, "lutheran": 9.265777587890625, "estimates": 6.02922248840332, "cheap": 6.063487529754639, "decree": 8.51655101776123, "saxon": 8.133469581604004, "proximity": 7.704836845397949, "stripped": 8.595911979675293, "idiot": 9.021928787231445, "deposits": 6.564524173736572, "contrary": 7.4186930656433105, "presenter": 8.94879150390625, "magnus": 9.401274681091309, "glacier": 8.204514503479004, "im": 5.033421993255615, "offense": 7.218296527862549, "edwin": 8.807724952697754, "##ori": 5.639342308044434, "upright": 7.462035655975342, "##long": 7.409124374389648, "bolt": 7.3791422843933105, "##ois": 8.18242359161377, "toss": 7.398168087005615, "geographical": 7.156959533691406, "##izes": 6.754473686218262, "environments": 6.8654937744140625, "delicate": 7.343891620635986, "marking": 7.6599321365356445, "abstract": 6.918023109436035, "xavier": 9.4795503616333, "nails": 6.8694047927856445, "windsor": 8.383408546447754, "plantation": 8.171957969665527, "occurring": 6.227020740509033, "equity": 6.654293537139893, "saskatchewan": 8.819896697998047, "fears": 7.951822280883789, "drifted": 10.158732414245605, "sequences": 7.758185863494873, "vegetation": 7.449514865875244, "revolt": 8.61880874633789, "##stic": 6.4676289558410645, "1843": 9.1411771774292, "sooner": 7.480714797973633, "fusion": 7.247095584869385, "opposing": 7.892265796661377, "nato": 8.403899192810059, "skating": 8.753995895385742, "1836": 8.434142112731934, "secretly": 8.778661727905273, "ruin": 8.179594993591309, "lease": 6.476553916931152, "##oc": 5.3145222663879395, "edit": 5.471705913543701, "##nne": 7.166436195373535, "flora": 7.949255466461182, "anxiety": 5.950212001800537, "ruby": 7.8856282234191895, "##ological": 7.270552635192871, "##mia": 6.347602844238281, "tel": 6.4851884841918945, "bout": 7.609857559204102, "taxi": 7.248048782348633, "emmy": 7.908439636230469, "frost": 6.786815643310547, "rainbow": 7.569377899169922, "compounds": 6.036767482757568, "foundations": 7.905367851257324, "rainfall": 6.540032386779785, "assassination": 8.16636848449707, "nightmare": 8.495304107666016, "dominican": 7.937784671783447, "##win": 7.742427349090576, "achievements": 7.929895401000977, "deserve": 8.161602020263672, "orlando": 7.056669235229492, "intact": 7.636689186096191, "armenia": 9.175533294677734, "##nte": 7.706594944000244, "calgary": 8.513166427612305, "valentine": 8.241166114807129, "106": 7.103010654449463, "marion": 8.137716293334961, "proclaimed": 8.47612476348877, "theodore": 8.099754333496094, "bells": 8.545214653015137, "courtyard": 8.934956550598145, "thigh": 6.982687473297119, "gonzalez": 9.466315269470215, "console": 7.198287010192871, "troop": 9.06695556640625, "minimal": 6.7026686668396, "monte": 7.6829915046691895, "everyday": 6.405508041381836, "##ence": 7.272016525268555, "##if": 6.366249084472656, "supporter": 8.892915725708008, "terrorism": 8.321548461914062, "buck": 7.225885391235352, "openly": 8.676795959472656, "presbyterian": 9.0659761428833, "activists": 8.740472793579102, "carpet": 6.972500324249268, "##iers": 7.868633270263672, "rubbing": 7.65705680847168, "uprising": 9.002448081970215, "##yi": 8.049271583557129, "cute": 7.380956172943115, "conceived": 8.125411033630371, "legally": 6.685044288635254, "##cht": 8.364299774169922, "millennium": 8.264169692993164, "cello": 9.261007308959961, "velocity": 6.996063709259033, "ji": 7.066429615020752, "rescued": 9.007975578308105, "cardiff": 9.587299346923828, "1835": 8.855740547180176, "rex": 8.25499153137207, "concentrate": 7.318331241607666, "senators": 7.76963472366333, "beard": 8.158041954040527, "rendered": 7.924566745758057, "glowing": 8.720870971679688, "battalions": 10.11586856842041, "scouts": 8.59529972076416, "competitors": 7.55328893661499, "sculptor": 9.111028671264648, "catalogue": 8.711212158203125, "arctic": 7.2603631019592285, "ion": 6.460733890533447, "raja": 9.494464874267578, "bicycle": 7.7539591789245605, "wow": 7.7563347816467285, "glancing": 11.014827728271484, "lawn": 6.672540664672852, "##woman": 8.43779182434082, "gentleman": 8.831443786621094, "lighthouse": 8.727827072143555, "publish": 7.752115726470947, "predicted": 7.720009803771973, "calculated": 6.059460639953613, "##val": 6.958837985992432, "variants": 7.392275333404541, "##gne": 7.557178497314453, "strain": 6.531689167022705, "##ui": 7.35232400894165, "winston": 8.133084297180176, "deceased": 7.569596767425537, "##nus": 8.08056926727295, "touchdowns": 9.52188491821289, "brady": 7.836058139801025, "caleb": 9.492963790893555, "sinking": 8.364785194396973, "echoed": 10.296234130859375, "crush": 7.625267028808594, "hon": 7.609172821044922, "blessed": 8.20162296295166, "protagonist": 7.903223514556885, "hayes": 8.75471305847168, "endangered": 7.62387752532959, "magnitude": 7.117412567138672, "editors": 7.7563347816467285, "##tine": 6.455251693725586, "estimate": 5.605685234069824, "responsibilities": 6.727385520935059, "##mel": 6.664438724517822, "backup": 6.864843368530273, "laying": 7.337092399597168, "consumed": 6.709880828857422, "sealed": 7.1777801513671875, "zurich": 9.016324043273926, "lovers": 7.732058048248291, "frustrated": 8.685457229614258, "##eau": 8.674145698547363, "ahmed": 9.787420272827148, "kicking": 8.533650398254395, "mit": 5.840426921844482, "treasurer": 8.364785194396973, "1832": 8.830670356750488, "biblical": 7.5955810546875, "refuse": 7.883525848388672, "terrified": 9.751808166503906, "pump": 6.089792728424072, "agrees": 7.9454169273376465, "genuine": 7.431595325469971, "imprisonment": 8.448293685913086, "refuses": 8.567562103271484, "plymouth": 8.303118705749512, "##hen": 6.426604270935059, "lou": 7.48292350769043, "##nen": 8.320154190063477, "tara": 8.241595268249512, "trembling": 9.390382766723633, "antarctic": 8.49807357788086, "ton": 6.590701580047607, "learns": 8.204514503479004, "##tas": 7.253307819366455, "crap": 7.9878034591674805, "crucial": 6.808597564697266, "faction": 9.131723403930664, "atop": 7.7954020500183105, "##borough": 9.245657920837402, "wrap": 6.45762825012207, "lancaster": 8.349844932556152, "odds": 7.596706867218018, "hopkins": 8.268129348754883, "erik": 8.71396255493164, "lyon": 9.108983039855957, "##eon": 7.620642185211182, "bros": 7.895905017852783, "##ode": 7.002011299133301, "snap": 6.850429534912109, "locality": 8.395853042602539, "tips": 5.359617233276367, "empress": 9.437515258789062, "crowned": 8.694192886352539, "cal": 4.326216220855713, "acclaimed": 8.236884117126465, "chuckled": 12.796330451965332, "##ory": 6.828772068023682, "clara": 8.36916446685791, "sends": 7.112542629241943, "mild": 5.490169048309326, "towel": 7.032163619995117, "##fl": 5.744863986968994, "##day": 6.9645676612854, "##\u0430": 8.91877269744873, "wishing": 8.436225891113281, "assuming": 6.766872406005859, "interviewed": 8.533076286315918, "##bal": 7.418127536773682, "##die": 8.026165008544922, "interactions": 6.933569431304932, "eden": 8.68411922454834, "cups": 6.238132953643799, "helena": 9.020057678222656, "##lf": 7.312211513519287, "indie": 8.836878776550293, "beck": 8.046794891357422, "##fire": 7.788829326629639, "batteries": 6.984151363372803, "filipino": 8.629507064819336, "wizard": 7.353736400604248, "parted": 9.946450233459473, "##lam": 6.366578102111816, "traces": 7.817628383636475, "##born": 7.707601070404053, "rows": 6.966365337371826, "idol": 8.228798866271973, "albany": 8.03067398071289, "delegates": 7.982488632202148, "##ees": 7.821287155151367, "##sar": 7.759775638580322, "discussions": 7.680294036865234, "##ex": 5.93355131149292, "notre": 8.794205665588379, "instructed": 8.5475435256958, "belgrade": 10.17343807220459, "highways": 7.95729923248291, "suggestion": 7.894994258880615, "lauren": 8.178788185119629, "possess": 7.088000774383545, "orientation": 7.2539472579956055, "alexandria": 8.2476224899292, "abdul": 9.167916297912598, "beats": 7.005871295928955, "salary": 4.5934739112854, "reunion": 8.349367141723633, "ludwig": 9.105921745300293, "alright": 9.002448081970215, "wagner": 8.843910217285156, "intimate": 8.029631614685059, "pockets": 7.910287380218506, "slovenia": 8.809995651245117, "hugged": 11.355432510375977, "brighton": 9.23981761932373, "merchants": 8.12579345703125, "cruel": 8.285470962524414, "stole": 8.756866455078125, "trek": 7.815663814544678, "slopes": 8.051753997802734, "repairs": 7.002135753631592, "enrollment": 6.8080854415893555, "politically": 8.3527193069458, "underlying": 6.189321994781494, "promotional": 8.039402961730957, "counting": 7.269577503204346, "boeing": 8.2783203125, "##bb": 7.167462348937988, "isabella": 9.119255065917969, "naming": 7.445633888244629, "##\u0438": 8.95403003692627, "keen": 7.957622051239014, "bacteria": 4.994179725646973, "listing": 6.279563903808594, "separately": 6.949950695037842, "belfast": 9.178815841674805, "ussr": 8.792715072631836, "450": 6.459216117858887, "lithuanian": 9.708074569702148, "anybody": 8.079108238220215, "ribs": 6.833590984344482, "sphere": 7.829782485961914, "martinez": 9.161433219909668, "cock": 7.62387752532959, "embarrassed": 9.322338104248047, "proposals": 8.223725318908691, "fragments": 7.680783748626709, "nationals": 8.47341537475586, "##fs": 6.766971111297607, "##wski": 9.157135009765625, "premises": 7.76963472366333, "fin": 7.319013595581055, "1500": 6.834746837615967, "alpine": 8.085330963134766, "matched": 7.88142728805542, "freely": 7.37841796875, "bounded": 8.148218154907227, "jace": 10.167530059814453, "sleeve": 7.744513988494873, "##af": 6.662047863006592, "gaming": 7.297741413116455, "pier": 7.9624810218811035, "populated": 7.437148571014404, "evident": 7.709364414215088, "##like": 7.226974010467529, "frances": 8.732025146484375, "flooded": 8.680784225463867, "##dle": 7.338657379150391, "frightened": 9.408143043518066, "pour": 6.2619781494140625, "trainer": 7.648005962371826, "framed": 8.363814353942871, "visitor": 7.436764717102051, "challenging": 7.0450544357299805, "pig": 7.254426956176758, "wickets": 11.446404457092285, "##fold": 7.598059177398682, "infected": 6.08292818069458, "email": 5.13518762588501, "##pes": 6.721641540527344, "arose": 8.36575698852539, "##aw": 7.048303604125977, "reward": 7.021969318389893, "ecuador": 8.019267082214355, "oblast": 10.447875022888184, "vale": 7.4059553146362305, "ch": 5.288203716278076, "shuttle": 7.323117256164551, "##usa": 6.776348114013672, "bach": 8.545214653015137, "rankings": 7.313229084014893, "forbidden": 8.574724197387695, "cornwall": 8.869318008422852, "accordance": 7.122025966644287, "salem": 8.012758255004883, "consumers": 6.267388820648193, "bruno": 9.042753219604492, "fantastic": 7.210305690765381, "toes": 7.060614585876465, "machinery": 7.4795122146606445, "resolved": 7.849308967590332, "julius": 8.30357551574707, "remembering": 8.483752250671387, "propaganda": 8.825268745422363, "iceland": 7.677847862243652, "bombardment": 9.787420272827148, "tide": 7.749225616455078, "contacts": 6.800335884094238, "wives": 8.323410034179688, "##rah": 7.775812149047852, "concerto": 9.884645462036133, "macdonald": 9.311017036437988, "albania": 9.14434814453125, "implement": 7.1555094718933105, "daisy": 8.274320602416992, "tapped": 8.879827499389648, "sudan": 8.272990226745605, "helmet": 8.409468650817871, "angela": 8.574125289916992, "mistress": 9.142232894897461, "##lic": 6.472959518432617, "crop": 6.728330135345459, "sunk": 9.057204246520996, "finest": 7.360294342041016, "##craft": 6.9443039894104, "hostile": 8.192998886108398, "##ute": 6.341742038726807, "##tsu": 8.506430625915527, "boxer": 8.363329887390137, "fr": 5.600928783416748, "paths": 7.719245433807373, "adjusted": 6.649215221405029, "habit": 6.993842601776123, "ballot": 8.145874977111816, "supervision": 7.223556041717529, "soprano": 9.105921745300293, "##zen": 7.743991851806641, "bullets": 8.899524688720703, "wicked": 8.653196334838867, "sunset": 7.084890365600586, "regiments": 9.830636978149414, "disappear": 7.691127300262451, "lamp": 7.455755710601807, "performs": 7.074280738830566, "app": 4.864048957824707, "##gia": 6.731265068054199, "##oa": 6.268163681030273, "rabbit": 7.359227657318115, "digging": 7.982819557189941, "incidents": 8.068581581115723, "entries": 7.2377705574035645, "##cion": 8.412519454956055, "dishes": 6.6845011711120605, "##oi": 7.43465518951416, "introducing": 7.578625679016113, "##ati": 6.356035232543945, "##fied": 7.415869235992432, "freshman": 8.168760299682617, "slot": 7.097526550292969, "jill": 8.587989807128906, "tackles": 9.769455909729004, "baroque": 8.794205665588379, "backs": 7.344942092895508, "##iest": 6.887748718261719, "lone": 7.778510093688965, "sponsor": 7.746343612670898, "destiny": 7.960210800170898, "altogether": 7.832915306091309, "convert": 5.564113616943359, "##aro": 7.178372859954834, "consensus": 7.688408374786377, "shapes": 6.647034168243408, "demonstration": 8.073287010192871, "basically": 6.049295425415039, "feminist": 8.662961959838867, "auction": 7.194512844085693, "artifacts": 8.396855354309082, "##bing": 7.369225025177002, "strongest": 7.3791422843933105, "twitter": 6.353238105773926, "halifax": 9.146468162536621, "2019": 8.279657363891602, "allmusic": 9.680550575256348, "mighty": 8.095664978027344, "smallest": 6.494871139526367, "precise": 6.963850021362305, "alexandra": 8.94879150390625, "viola": 8.850991249084473, "##los": 6.548130035400391, "##ille": 7.748701095581055, "manuscripts": 9.367624282836914, "##illo": 7.662815570831299, "dancers": 8.503079414367676, "ari": 7.141124248504639, "managers": 6.5162787437438965, "monuments": 8.509231567382812, "blades": 7.676139831542969, "barracks": 9.529637336730957, "springfield": 7.791836738586426, "maiden": 8.267248153686523, "consolidated": 8.194635391235352, "electron": 6.579236030578613, "##end": 6.51987886428833, "berry": 7.65156888961792, "airing": 8.292222023010254, "wheat": 6.398346900939941, "nobel": 7.9371514320373535, "inclusion": 7.6993303298950195, "blair": 8.797943115234375, "payments": 5.75277853012085, "geography": 7.061800956726074, "bee": 6.617751598358154, "cc": 6.085211277008057, "eleanor": 8.840779304504395, "react": 6.5789103507995605, "##hurst": 8.95053482055664, "afc": 9.055265426635742, "manitoba": 8.794205665588379, "##yu": 7.5976080894470215, "su": 5.425727367401123, "lineup": 7.838923931121826, "fitness": 6.407357692718506, "recreational": 7.060878276824951, "investments": 7.219531536102295, "airborne": 8.153314590454102, "disappointment": 9.095785140991211, "##dis": 6.554385185241699, "edmonton": 8.907011985778809, "viewing": 6.829294681549072, "##row": 7.1591386795043945, "renovation": 8.2476224899292, "##cast": 6.93159818649292, "infant": 6.8246002197265625, "bankruptcy": 7.197380065917969, "roses": 7.762696743011475, "aftermath": 8.518248558044434, "pavilion": 8.68947982788086, "##yer": 7.844391345977783, "carpenter": 7.88023042678833, "withdrawal": 6.533632278442383, "ladder": 7.778510093688965, "##hy": 4.917139530181885, "discussing": 7.760040760040283, "popped": 8.753279685974121, "reliable": 6.419152736663818, "agreements": 7.4024248123168945, "rochester": 8.175166130065918, "##abad": 10.141366004943848, "curves": 7.871297836303711, "bombers": 9.783400535583496, "220": 6.7597270011901855, "rao": 10.093737602233887, "reverend": 9.461941719055176, "decreased": 6.594249725341797, "choosing": 6.417766094207764, "107": 7.339876174926758, "stiff": 6.486746311187744, "consulting": 7.358872413635254, "naples": 8.393851280212402, "crawford": 8.668867111206055, "tracy": 8.781603813171387, "ka": 5.513653755187988, "ribbon": 7.281832695007324, "cops": 8.862905502319336, "##lee": 8.146265029907227, "crushed": 7.545126438140869, "deciding": 7.353559494018555, "unified": 7.6611328125, "teenager": 7.953108310699463, "accepting": 7.766159534454346, "flagship": 7.980172157287598, "explorer": 6.5184221267700195, "poles": 7.5338521003723145, "sanchez": 9.498983383178711, "inspection": 6.8172383308410645, "revived": 8.90118408203125, "skilled": 7.1223063468933105, "induced": 7.1325907707214355, "exchanged": 8.313673973083496, "flee": 8.4028902053833, "locals": 7.893477439880371, "tragedy": 8.08496379852295, "swallow": 7.596481800079346, "loading": 7.079370021820068, "hanna": 9.25744342803955, "demonstrate": 7.168783187866211, "##ela": 7.690385341644287, "salvador": 8.434662818908691, "flown": 8.446711540222168, "contestants": 8.883899688720703, "civilization": 7.37841796875, "##ines": 6.269716262817383, "wanna": 8.245035171508789, "rhodes": 9.09477710723877, "fletcher": 9.270570755004883, "hector": 9.58072566986084, "knocking": 9.111028671264648, "considers": 7.668607711791992, "##ough": 7.756070613861084, "nash": 8.572331428527832, "mechanisms": 7.15391731262207, "sensed": 9.963117599487305, "mentally": 8.019611358642578, "walt": 7.152471542358398, "unclear": 7.716448783874512, "##eus": 7.975226402282715, "renovated": 8.889628410339355, "madame": 9.575823783874512, "##cks": 7.59243631362915, "crews": 8.591029167175293, "governmental": 7.7161946296691895, "##hin": 6.849361896514893, "undertaken": 8.339849472045898, "monkey": 7.986804485321045, "##ben": 7.4156813621521, "##ato": 6.429054260253906, "fatal": 6.827518939971924, "armored": 9.184309959411621, "copa": 8.110239028930664, "caves": 8.345549583435059, "governance": 8.078742980957031, "grasp": 8.032065391540527, "perception": 7.234158515930176, "certification": 6.0309624671936035, "froze": 9.980066299438477, "damp": 7.07977294921875, "tugged": 11.87596607208252, "wyoming": 7.458890438079834, "##rg": 6.859979629516602, "##ero": 6.0299272537231445, "newman": 8.832219123840332, "##lor": 5.6230292320251465, "nerves": 6.077391624450684, "curiosity": 8.496965408325195, "graph": 6.467119216918945, "115": 6.922030925750732, "##ami": 7.076420307159424, "withdraw": 7.481918811798096, "tunnels": 8.621943473815918, "dull": 7.2113776206970215, "meredith": 9.150720596313477, "moss": 7.49018669128418, "exhibits": 7.890451431274414, "neighbors": 7.735674858093262, "communicate": 6.669862747192383, "accuracy": 6.754861831665039, "explored": 8.16636848449707, "raiders": 9.0303955078125, "republicans": 7.6960906982421875, "secular": 8.640961647033691, "kat": 7.887735843658447, "superman": 8.265928268432617, "penny": 7.662815570831299, "criticised": 10.550423622131348, "##tch": 7.27822208404541, "freed": 8.14198112487793, "update": 5.671967506408691, "conviction": 7.591091156005859, "wade": 8.38538932800293, "ham": 6.309516906738281, "likewise": 7.734899044036865, "delegation": 8.81379222869873, "gotta": 8.757585525512695, "doll": 8.024781227111816, "promises": 7.850759983062744, "technological": 7.81007194519043, "myth": 7.161176681518555, "nationality": 8.025472640991211, "resolve": 6.925248146057129, "convent": 9.965520858764648, "##mark": 6.544820308685303, "sharon": 8.433622360229492, "dig": 6.757875442504883, "sip": 7.731542110443115, "coordinator": 7.574652194976807, "entrepreneur": 7.732058048248291, "fold": 6.996805191040039, "##dine": 6.630184173583984, "capability": 7.366000652313232, "councillor": 10.95481014251709, "synonym": 5.783829212188721, "blown": 7.92269229888916, "swan": 8.26504898071289, "cursed": 9.5405912399292, "1815": 8.850201606750488, "jonas": 9.157135009765625, "haired": 8.638404846191406, "sofa": 8.497519493103027, "canvas": 7.8377766609191895, "keeper": 8.554563522338867, "rivalry": 9.037030220031738, "##hart": 8.095664978027344, "rapper": 7.572011470794678, "speedway": 8.877392768859863, "swords": 9.1411771774292, "postal": 6.827310085296631, "maxwell": 8.784554481506348, "estonia": 9.080769538879395, "potter": 7.567188262939453, "recurring": 7.450681686401367, "##nn": 7.757392406463623, "##ave": 7.13273286819458, "errors": 6.710251808166504, "##oni": 6.627873420715332, "cognitive": 6.882331371307373, "1834": 8.992392539978027, "##\u00b2": 8.724343299865723, "claws": 8.268129348754883, "nadu": 9.321073532104492, "roberto": 9.660836219787598, "bce": 7.811466693878174, "wrestler": 8.673484802246094, "ellie": 9.528081893920898, "##ations": 6.991011142730713, "infinite": 7.954073905944824, "ink": 6.90496826171875, "##tia": 7.2637481689453125, "presumably": 8.393351554870605, "finite": 8.431543350219727, "staircase": 8.771343231201172, "108": 6.912439823150635, "noel": 9.492963790893555, "patricia": 8.352239608764648, "nacional": 10.323400497436523, "##cation": 7.052346706390381, "chill": 6.78411340713501, "eternal": 8.261539459228516, "tu": 5.476803779602051, "preventing": 6.7105302810668945, "prussia": 8.949663162231445, "fossil": 7.018172740936279, "limbs": 7.46855354309082, "##logist": 6.83380126953125, "ernst": 9.35840129852295, "frog": 8.110239028930664, "perez": 9.182108879089355, "rene": 8.755430221557617, "##ace": 6.7198591232299805, "pizza": 6.957292079925537, "prussian": 9.592257499694824, "##ios": 7.145274639129639, "##vy": 7.532161235809326, "molecules": 5.617349147796631, "regulatory": 7.085835933685303, "answering": 8.043620109558105, "opinions": 7.310518264770508, "sworn": 8.14198112487793, "lengths": 7.243608474731445, "supposedly": 8.068221092224121, "hypothesis": 7.52984094619751, "upward": 7.385504722595215, "habitats": 7.5951313972473145, "seating": 7.580618858337402, "ancestors": 7.38023042678833, "drank": 8.56281566619873, "yield": 6.668169975280762, "hd": 6.165404796600342, "synthesis": 6.701011657714844, "researcher": 7.863914489746094, "modest": 7.391541004180908, "##var": 6.469889163970947, "mothers": 7.396507263183594, "peered": 11.739391326904297, "voluntary": 7.1371331214904785, "homeland": 7.725887298583984, "##the": 6.160946846008301, "acclaim": 9.037981986999512, "##igan": 8.328547477722168, "static": 7.072412014007568, "valve": 6.312006950378418, "luxembourg": 8.62761116027832, "alto": 8.205756187438965, "carroll": 8.25021743774414, "fe": 4.75607442855835, "receptor": 7.042980670928955, "norton": 8.686796188354492, "ambulance": 8.392851829528809, "##tian": 8.653196334838867, "johnston": 8.964588165283203, "catholics": 8.962821006774902, "depicting": 8.816840171813965, "jointly": 7.81678581237793, "elephant": 7.709868907928467, "gloria": 9.002448081970215, "mentor": 8.061744689941406, "badge": 8.26680850982666, "ahmad": 9.871415138244629, "distinguish": 6.918251991271973, "remarked": 9.88686752319336, "councils": 9.285089492797852, "precisely": 7.589301109313965, "allison": 8.907011985778809, "advancing": 8.388367652893066, "detection": 7.059560775756836, "crowded": 8.146655082702637, "##10": 6.216654300689697, "cooperative": 7.7563347816467285, "ankle": 6.970089912414551, "mercedes": 8.15174388885498, "dagger": 9.856197357177734, "surrendered": 8.917927742004395, "pollution": 6.834957122802734, "commit": 7.55523157119751, "subway": 7.958591938018799, "jeffrey": 8.236456871032715, "lesson": 6.496668815612793, "sculptures": 8.947052001953125, "provider": 5.555856227874756, "##fication": 6.952786445617676, "membrane": 5.810462474822998, "timothy": 8.307235717773438, "rectangular": 7.595355987548828, "fiscal": 7.041428565979004, "heating": 6.239175319671631, "teammate": 9.605602264404297, "basket": 7.579732418060303, "particle": 7.246143341064453, "anonymous": 6.9608635902404785, "deployment": 7.893477439880371, "##ple": 6.496294021606445, "missiles": 9.037981986999512, "courthouse": 7.693606376647949, "proportion": 6.897439956665039, "shoe": 7.059165954589844, "sec": 6.800233840942383, "##ller": 7.9878034591674805, "complaints": 7.359582901000977, "forbes": 7.691375255584717, "blacks": 7.687914848327637, "abandon": 8.812272071838379, "remind": 8.185259819030762, "sizes": 5.800059795379639, "overwhelming": 7.80951452255249, "autobiography": 8.771343231201172, "natalie": 8.879827499389648, "##awa": 8.41404914855957, "risks": 6.414583683013916, "contestant": 9.0610933303833, "countryside": 8.410484313964844, "babies": 6.12236213684082, "scorer": 9.678742408752441, "invaded": 8.184042930603027, "enclosed": 7.267306327819824, "proceed": 7.3473968505859375, "hurling": 10.761224746704102, "disorders": 5.574077606201172, "##cu": 5.982370376586914, "reflecting": 7.9177117347717285, "continuously": 7.1788177490234375, "cruiser": 9.194276809692383, "graduates": 7.2967400550842285, "freeway": 8.504754066467285, "investigated": 8.190140724182129, "ore": 6.568866729736328, "deserved": 9.280226707458496, "maid": 8.508110046386719, "blocking": 7.304445743560791, "phillip": 8.725735664367676, "jorge": 9.423420906066895, "shakes": 8.219517707824707, "dove": 8.037301063537598, "mann": 8.210322380065918, "variables": 6.556850910186768, "lacked": 9.09982681274414, "burden": 7.340224742889404, "accompanying": 8.048916816711426, "que": 6.682061672210693, "consistently": 7.146996974945068, "organizing": 7.963130950927734, "provisional": 8.290417671203613, "complained": 9.182108879089355, "endless": 7.668124198913574, "##rm": 5.1072587966918945, "tubes": 6.765694618225098, "juice": 5.603657245635986, "georges": 9.234009742736816, "krishna": 9.362343788146973, "mick": 8.9111967086792, "labels": 6.985128402709961, "thriller": 8.090853691101074, "##uch": 7.831204891204834, "laps": 8.095664978027344, "arcade": 8.570540428161621, "sage": 7.814542770385742, "snail": 8.696220397949219, "##table": 7.227129936218262, "shannon": 8.65774154663086, "fi": 5.04131555557251, "laurence": 9.451811790466309, "seoul": 8.81379222869873, "vacation": 6.2312092781066895, "presenting": 7.724606513977051, "hire": 6.621057510375977, "churchill": 8.570540428161621, "surprisingly": 7.458302021026611, "prohibited": 7.546624660491943, "savannah": 8.087535858154297, "technically": 6.844785213470459, "##oli": 6.478908061981201, "170": 6.932641506195068, "##lessly": 8.313673973083496, "testimony": 8.304946899414062, "suited": 7.374442100524902, "speeds": 6.639394760131836, "toys": 7.450098037719727, "romans": 7.643274784088135, "mlb": 7.644455909729004, "flowering": 7.175116539001465, "measurement": 5.979460716247559, "talented": 7.76482629776001, "kay": 7.5181121826171875, "settings": 5.497098922729492, "charleston": 8.014467239379883, "expectations": 7.180302143096924, "shattered": 9.329957008361816, "achieving": 7.501795768737793, "triumph": 8.430505752563477, "ceremonies": 8.301750183105469, "portsmouth": 9.161433219909668, "lanes": 8.271220207214355, "mandatory": 7.242501258850098, "loser": 9.145407676696777, "stretching": 7.2379279136657715, "cologne": 9.27297592163086, "realizes": 9.279014587402344, "seventy": 8.533076286315918, "cornell": 8.544052124023438, "careers": 7.011877536773682, "webb": 8.326676368713379, "##ulating": 7.4825215339660645, "americas": 7.481517314910889, "budapest": 9.131723403930664, "ava": 7.774466037750244, "suspicion": 8.718792915344238, "##ison": 8.389362335205078, "yo": 5.8823699951171875, "conrad": 8.852571487426758, "##hai": 8.359457969665527, "sterling": 7.788829326629639, "jessie": 9.064020156860352, "rector": 10.734908103942871, "##az": 6.990028381347656, "1831": 8.962821006774902, "transform": 7.0248894691467285, "organize": 7.313398361206055, "loans": 6.324489116668701, "christine": 8.692170143127441, "volcanic": 7.068685531616211, "warrant": 6.0578155517578125, "slender": 7.931153774261475, "summers": 7.420768737792969, "subfamily": 9.231696128845215, "newer": 7.155220031738281, "danced": 9.422021865844727, "dynamics": 7.803956508636475, "rhine": 8.75471305847168, "proceeds": 7.727940082550049, "heinrich": 9.570945739746094, "gastropod": 9.734466552734375, "commands": 7.295572280883789, "sings": 8.008328437805176, "facilitate": 7.319013595581055, "easter": 7.5654401779174805, "ra": 5.398606777191162, "positioned": 7.741125106811523, "responses": 6.818685531616211, "expense": 6.562600612640381, "fruits": 5.882045745849609, "yanked": 11.500764846801758, "imported": 7.564349174499512, "25th": 7.495872974395752, "velvet": 8.324341773986816, "vic": 7.702580451965332, "primitive": 7.781757354736328, "tribune": 8.71741008758545, "baldwin": 8.68411922454834, "neighbourhood": 9.416447639465332, "donna": 8.633310317993164, "rip": 7.43734073638916, "hay": 6.9139180183410645, "pr": 5.800994396209717, "##uro": 5.617069244384766, "1814": 8.96635913848877, "espn": 7.798704624176025, "welcomed": 8.390856742858887, "##aria": 8.059952735900879, "qualifier": 9.801619529724121, "glare": 9.142232894897461, "highland": 8.060311317443848, "timing": 6.928360462188721, "##cted": 6.8559980392456055, "shells": 7.410806655883789, "eased": 10.188364028930664, "geometry": 7.666190147399902, "louder": 9.096794128417969, "exciting": 6.834746837615967, "slovakia": 8.832219123840332, "##sion": 7.245826244354248, "##iz": 7.076822280883789, "##lot": 6.961818218231201, "savings": 6.007657527923584, "prairie": 7.691375255584717, "##ques": 8.169159889221191, "marching": 9.010750770568848, "rafael": 9.224787712097168, "tonnes": 8.392353057861328, "##lled": 6.996805191040039, "curtain": 8.224991798400879, "preceding": 7.708860397338867, "shy": 7.855417251586914, "heal": 6.404139995574951, "greene": 8.082763671875, "worthy": 7.931468486785889, "##pot": 7.024507999420166, "detachment": 8.678788185119629, "bury": 8.80621337890625, "sherman": 8.256733894348145, "##eck": 7.62225866317749, "reinforced": 8.223304748535156, "seeks": 7.569377899169922, "bottles": 7.170252323150635, "contracted": 7.856000900268555, "duchess": 9.08176326751709, "outfit": 7.829213619232178, "walsh": 9.020057678222656, "##sc": 5.996865272521973, "mickey": 8.40339469909668, "##ase": 6.637580394744873, "geoffrey": 9.374263763427734, "archer": 9.032286643981934, "squeeze": 7.445246696472168, "dawson": 8.942715644836426, "eliminate": 6.5035905838012695, "invention": 7.14901065826416, "##enberg": 8.917083740234375, "neal": 8.56045150756836, "##eth": 6.180593490600586, "stance": 8.464792251586914, "dealer": 6.759239196777344, "coral": 7.341270923614502, "maple": 7.332412242889404, "retire": 7.284466743469238, "polo": 8.186477661132812, "simplified": 7.84814977645874, "##ht": 6.52449369430542, "1833": 8.998780250549316, "hid": 8.457306861877441, "watts": 7.532794952392578, "backwards": 7.979511260986328, "jules": 9.44606876373291, "##oke": 7.333277225494385, "genesis": 7.951822280883789, "mt": 6.607144832611084, "frames": 7.334489822387695, "rebounds": 9.33635139465332, "burma": 8.826038360595703, "woodland": 8.404403686523438, "moist": 6.210665702819824, "santos": 9.1411771774292, "whispers": 10.113075256347656, "drained": 7.581949710845947, "subspecies": 7.887735843658447, "##aa": 6.796280860900879, "streaming": 7.042075157165527, "ulster": 9.367624282836914, "burnt": 8.259788513183594, "correspondence": 8.116659164428711, "maternal": 7.786920547485352, "gerard": 9.148591995239258, "denis": 9.071866989135742, "stealing": 8.651254653930664, "##load": 6.3405866622924805, "genius": 7.902917385101318, "duchy": 9.869226455688477, "##oria": 7.031779766082764, "inaugurated": 9.098814964294434, "momentum": 8.07582950592041, "suits": 7.6446919441223145, "placement": 6.946770668029785, "sovereign": 7.921133518218994, "clause": 6.914373397827148, "thames": 8.866106986999512, "##hara": 8.925555229187012, "confederation": 8.120454788208008, "reservation": 7.481918811798096, "sketch": 7.865386486053467, "yankees": 8.487039566040039, "lets": 6.443808078765869, "rotten": 8.41916275024414, "charm": 7.448543071746826, "hal": 7.028839111328125, "verses": 8.666237831115723, "ultra": 6.710623264312744, "commercially": 7.444665908813477, "dot": 6.955273628234863, "salon": 7.779321193695068, "citation": 7.123007297515869, "adopt": 7.3419694900512695, "winnipeg": 9.329957008361816, "mist": 7.560431480407715, "allocated": 8.108734130859375, "cairo": 8.849413871765137, "##boy": 8.069665908813477, "jenkins": 9.108983039855957, "interference": 7.916470527648926, "objectives": 6.8565354347229, "##wind": 7.5994133949279785, "1820": 8.566967964172363, "portfolio": 7.113236904144287, "armoured": 10.436246871948242, "sectors": 7.751063823699951, "##eh": 7.639036178588867, "initiatives": 8.048563003540039, "##world": 7.855417251586914, "integrity": 7.2025299072265625, "exercises": 6.7565131187438965, "robe": 9.282655715942383, "tap": 5.9667134284973145, "ab": 5.558816432952881, "gazed": 11.237112998962402, "##tones": 7.231810569763184, "distracted": 9.206595420837402, "rulers": 8.457839965820312, "111": 7.197833061218262, "favorable": 7.836058139801025, "jerome": 9.183208465576172, "tended": 8.850991249084473, "cart": 6.062807559967041, "factories": 8.093441009521484, "##eri": 6.967325210571289, "diplomat": 9.002448081970215, "valued": 7.4291157722473145, "gravel": 7.449709415435791, "charitable": 7.890753746032715, "##try": 7.35232400894165, "calvin": 8.078378677368164, "exploring": 7.635751724243164, "chang": 8.664271354675293, "shepherd": 7.982488632202148, "terrace": 8.645451545715332, "pdf": 6.200745582580566, "pupil": 7.860096454620361, "##ural": 7.450876712799072, "reflects": 7.044795036315918, "ups": 6.632242679595947, "##rch": 7.4586944580078125, "governors": 8.346979141235352, "shelf": 6.898335933685303, "depths": 7.935253620147705, "##nberg": 9.262197494506836, "trailed": 10.974417686462402, "crest": 7.3465189933776855, "tackle": 7.865976333618164, "##nian": 8.989667892456055, "##ats": 7.073613166809082, "hatred": 8.895389556884766, "##kai": 9.17444133758545, "clare": 8.871733665466309, "makers": 7.5168633460998535, "ethiopia": 8.189325332641602, "longtime": 8.072561264038086, "detected": 6.895874500274658, "embedded": 7.385140419006348, "lacking": 7.631078243255615, "slapped": 10.1853609085083, "rely": 6.994705677032471, "thomson": 8.856534004211426, "anticipation": 8.818367004394531, "iso": 6.253593921661377, "morton": 9.001529693603516, "successive": 8.339376449584961, "agnes": 9.179912567138672, "screenwriter": 8.868515014648438, "straightened": 10.158732414245605, "philippe": 9.997308731079102, "playwright": 8.736944198608398, "haunted": 8.77792739868164, "licence": 7.946375370025635, "iris": 7.769902229309082, "intentions": 8.58859634399414, "sutton": 9.478071212768555, "112": 7.17172384262085, "logical": 7.170546531677246, "correctly": 6.514750957489014, "##weight": 6.9219160079956055, "branded": 8.058164596557617, "licked": 11.086031913757324, "tipped": 8.403899192810059, "silva": 9.380949020385742, "ricky": 9.016324043273926, "narrator": 8.302206039428711, "requests": 7.01527214050293, "##ents": 6.744433403015137, "greeted": 9.296119689941406, "supernatural": 8.202860832214355, "cow": 6.562680244445801, "##wald": 9.062067985534668, "lung": 6.039754390716553, "refusing": 8.86450481414795, "employer": 5.684468746185303, "strait": 8.108358383178711, "gaelic": 7.542562484741211, "liner": 7.717718601226807, "##piece": 7.563259601593018, "zoe": 8.857328414916992, "sabha": 10.650279998779297, "##mba": 6.809007167816162, "driveway": 7.369225025177002, "harvest": 6.935079574584961, "prints": 7.952786445617676, "bates": 8.96105670928955, "reluctantly": 10.032711029052734, "threshold": 7.161322116851807, "algebra": 8.358975410461426, "ira": 6.572419166564941, "wherever": 7.480915546417236, "coupled": 7.894994258880615, "240": 6.615216255187988, "assumption": 7.878139019012451, "picks": 7.567407131195068, "##air": 7.439263343811035, "designers": 7.586844444274902, "raids": 9.253893852233887, "gentlemen": 9.159281730651855, "##ean": 7.474915027618408, "roller": 7.414554119110107, "blowing": 7.961832046508789, "leipzig": 10.436246871948242, "locks": 7.5994133949279785, "screw": 6.716864585876465, "dressing": 7.064443588256836, "strand": 7.237613201141357, "##lings": 7.392275333404541, "scar": 6.7245564460754395, "dwarf": 7.443119525909424, "depicts": 8.310909271240234, "##nu": 6.396852970123291, "nods": 10.766572952270508, "##mine": 6.376834392547607, "differ": 6.386928081512451, "boris": 9.653762817382812, "##eur": 6.996434211730957, "yuan": 9.042753219604492, "flip": 7.0170369148254395, "##gie": 7.49018669128418, "mob": 7.3088274002075195, "invested": 7.9109039306640625, "questioning": 8.82680892944336, "applying": 6.1623945236206055, "##ture": 7.437725067138672, "shout": 8.887168884277344, "##sel": 7.45595121383667, "gameplay": 8.534801483154297, "blamed": 8.722258567810059, "illustrations": 8.489786148071289, "bothered": 9.2374906539917, "weakness": 6.2505998611450195, "rehabilitation": 7.284631252288818, "##of": 6.132937431335449, "##zes": 7.139411449432373, "envelope": 7.233218669891357, "rumors": 7.925191879272461, "miners": 8.818367004394531, "leicester": 9.882428169250488, "subtle": 7.3961381912231445, "kerry": 8.931528091430664, "##ico": 6.763929843902588, "ferguson": 8.716719627380371, "##fu": 6.262868404388428, "premiership": 10.740116119384766, "ne": 4.634617805480957, "##cat": 6.913577079772949, "bengali": 9.51726245880127, "prof": 7.416433334350586, "catches": 8.621315956115723, "remnants": 8.860511779785156, "dana": 8.38538932800293, "##rily": 7.931468486785889, "shouting": 9.687816619873047, "presidents": 7.443119525909424, "baltic": 8.732025146484375, "ought": 8.392851829528809, "ghosts": 8.97169017791748, "dances": 8.686796188354492, "sailors": 8.415580749511719, "shirley": 8.75113296508789, "fancy": 7.580175399780273, "dominic": 8.987855911254883, "##bie": 7.876647472381592, "madonna": 9.0181884765625, "##rick": 8.575922966003418, "bark": 7.127928733825684, "buttons": 7.313907623291016, "gymnasium": 9.916215896606445, "ashes": 8.47287368774414, "liver": 5.264001846313477, "toby": 9.384981155395508, "oath": 7.910287380218506, "providence": 8.354159355163574, "doyle": 9.013533592224121, "evangelical": 9.236329078674316, "nixon": 7.899557590484619, "cement": 7.046483039855957, "carnegie": 8.800942420959473, "embarked": 9.438936233520508, "hatch": 6.683777809143066, "surroundings": 7.722816467285156, "guarantee": 6.539093017578125, "needing": 7.856877326965332, "pirate": 8.71741008758545, "essence": 7.421524524688721, "##bee": 7.75792121887207, "filter": 6.239175319671631, "crane": 8.16517448425293, "hammond": 9.268171310424805, "projected": 7.349857330322266, "immune": 5.652052402496338, "percy": 8.987855911254883, "twelfth": 8.620688438415527, "##ult": 7.4310221672058105, "regent": 9.482515335083008, "doctoral": 8.01344108581543, "damon": 9.012604713439941, "mikhail": 9.920807838439941, "##ichi": 8.208244323730469, "lu": 5.231489181518555, "critically": 7.980502605438232, "elect": 6.888636112213135, "realised": 9.55325984954834, "abortion": 8.100499153137207, "acute": 5.829286575317383, "screening": 6.7077484130859375, "mythology": 7.357807636260986, "steadily": 7.944778919219971, "##fc": 7.375524997711182, "frown": 9.83908462524414, "nottingham": 9.856197357177734, "kirk": 7.988136291503906, "wa": 5.94588041305542, "minneapolis": 7.707601070404053, "##rra": 7.586398601531982, "module": 7.160739421844482, "algeria": 8.787514686584473, "mc": 5.82105016708374, "nautical": 7.599187850952148, "encounters": 8.368189811706543, "surprising": 7.359582901000977, "statues": 8.796445846557617, "availability": 6.63112735748291, "shirts": 7.737488746643066, "pie": 6.8175482749938965, "alma": 8.254121780395508, "brows": 6.1836042404174805, "munster": 9.70993709564209, "mack": 7.833771705627441, "soup": 6.601550579071045, "crater": 8.364785194396973, "tornado": 7.677847862243652, "sanskrit": 7.843814373016357, "cedar": 7.460068702697754, "explosive": 7.817347526550293, "bordered": 7.59873628616333, "dixon": 9.055265426635742, "planets": 7.047523021697998, "stamp": 7.111987590789795, "exam": 5.954736709594727, "happily": 8.635217666625977, "##bble": 7.317819595336914, "carriers": 7.047652721405029, "kidnapped": 9.253893852233887, "##vis": 6.488306522369385, "accommodation": 7.672974109649658, "emigrated": 9.345372200012207, "##met": 6.433478355407715, "knockout": 9.44035816192627, "correspondent": 8.441454887390137, "violation": 7.2251081466674805, "profits": 7.2679548263549805, "peaks": 7.513748645782471, "lang": 7.783385276794434, "specimen": 7.658254146575928, "agenda": 7.907824516296387, "ancestry": 7.290252685546875, "pottery": 8.49807357788086, "spelling": 6.584133625030518, "equations": 7.710373401641846, "obtaining": 7.200406074523926, "ki": 5.692958354949951, "linking": 7.855709075927734, "1825": 8.879827499389648, "debris": 7.10369873046875, "asylum": 8.934098243713379, "##20": 6.3735809326171875, "buddhism": 8.642242431640625, "teddy": 8.701645851135254, "##ants": 6.660456657409668, "gazette": 9.046586036682129, "##nger": 8.429469108581543, "##sse": 7.014139175415039, "dental": 5.987854480743408, "eligibility": 6.710158824920654, "utc": 7.303437232971191, "fathers": 8.013099670410156, "averaged": 7.271528244018555, "zimbabwe": 8.645451545715332, "francesco": 10.01738452911377, "coloured": 8.102738380432129, "hissed": 12.717859268188477, "translator": 8.205756187438965, "lynch": 8.33701229095459, "mandate": 8.20368766784668, "humanities": 8.6416015625, "mackenzie": 9.289977073669434, "uniforms": 8.440406799316406, "lin": 6.764713764190674, "##iana": 9.062067985534668, "##gio": 8.101617813110352, "asset": 6.581436634063721, "mhz": 8.755430221557617, "fitting": 6.975642204284668, "samantha": 9.240982055664062, "genera": 8.043972969055176, "wei": 7.616957664489746, "rim": 6.942780017852783, "beloved": 7.469544887542725, "shark": 7.456146717071533, "riot": 8.766252517700195, "entities": 7.131317138671875, "expressions": 7.634815216064453, "indo": 7.408937931060791, "carmen": 8.884716033935547, "slipping": 9.098814964294434, "owing": 8.247191429138184, "abbot": 9.867043495178223, "neighbor": 7.842949867248535, "sidney": 9.026623725891113, "##av": 6.933337688446045, "rats": 7.750801086425781, "recommendations": 6.8541741371154785, "encouraging": 8.112122535705566, "squadrons": 10.459639549255371, "anticipated": 7.7161946296691895, "commanders": 8.909521102905273, "conquered": 8.289966583251953, "##oto": 7.007869243621826, "donations": 7.9374680519104, "diagnosed": 6.271810054779053, "##mond": 8.190956115722656, "divide": 5.843816757202148, "##iva": 6.963610649108887, "guessed": 8.957536697387695, "decoration": 8.354159355163574, "vernon": 8.277429580688477, "auditorium": 9.175533294677734, "revelation": 8.493645668029785, "conversations": 8.20368766784668, "##kers": 7.883225440979004, "##power": 7.520613670349121, "herzegovina": 9.660836219787598, "dash": 7.365464687347412, "alike": 7.219377040863037, "protested": 10.443984031677246, "lateral": 6.625738620758057, "herman": 8.924704551696777, "accredited": 6.952194690704346, "mg": 5.472055912017822, "##gent": 6.760995388031006, "freeman": 8.759744644165039, "mel": 5.954300880432129, "fiji": 8.80923843383789, "crow": 7.902305603027344, "crimson": 8.917927742004395, "##rine": 6.2478485107421875, "livestock": 7.641624450683594, "##pped": 8.272990226745605, "humanitarian": 8.739059448242188, "bored": 8.662961959838867, "oz": 6.014300346374512, "whip": 7.630845546722412, "##lene": 8.024781227111816, "##ali": 6.503515243530273, "legitimate": 7.7083563804626465, "alter": 6.686493396759033, "grinning": 11.035661697387695, "spelled": 7.283972263336182, "anxious": 8.059952735900879, "oriental": 8.651254653930664, "wesley": 8.981537818908691, "##nin": 8.03276252746582, "##hole": 8.097892761230469, "carnival": 8.063179969787598, "controller": 7.184171199798584, "detect": 6.171723365783691, "##ssa": 7.423038482666016, "bowed": 9.753753662109375, "educator": 8.16279125213623, "kosovo": 9.951184272766113, "macedonia": 9.125470161437988, "##sin": 6.48134183883667, "occupy": 7.924253940582275, "mastering": 9.367624282836914, "stephanie": 8.69015121459961, "janeiro": 9.085749626159668, "para": 5.822539329528809, "unaware": 8.292222023010254, "nurses": 6.6939544677734375, "noon": 7.5164475440979, "135": 6.984884262084961, "cam": 6.617074966430664, "hopefully": 7.680783748626709, "ranger": 8.158041954040527, "combine": 6.0655317306518555, "sociology": 7.859803199768066, "polar": 6.599471092224121, "rica": 7.997508525848389, "##eer": 8.376015663146973, "neill": 9.362343788146973, "##sman": 8.353199005126953, "holocaust": 8.678123474121094, "##ip": 5.942859172821045, "doubled": 7.874563694000244, "lust": 7.83519983291626, "1828": 8.947921752929688, "109": 6.907565593719482, "decent": 7.277567386627197, "cooling": 6.6266770362854, "unveiled": 8.074012756347656, "##card": 6.4793500900268555, "1829": 9.031340599060059, "nsw": 7.455560207366943, "homer": 8.117417335510254, "chapman": 8.77353286743164, "meyer": 8.395853042602539, "##gin": 6.924672603607178, "dive": 7.551995277404785, "mae": 7.931783199310303, "reagan": 7.807009220123291, "expertise": 7.049605846405029, "##gled": 9.092763900756836, "darwin": 8.121976852416992, "brooke": 8.90201473236084, "sided": 7.680294036865234, "prosecution": 8.205342292785645, "investigating": 8.21867847442627, "comprised": 6.99248743057251, "petroleum": 7.20328950881958, "genres": 8.021676063537598, "reluctant": 8.874155044555664, "differently": 6.985495090484619, "trilogy": 8.379459381103516, "johns": 8.12579345703125, "vegetables": 5.584081172943115, "corpse": 9.22708511352539, "highlighted": 7.904141902923584, "lounge": 8.05852222442627, "pension": 7.089491844177246, "unsuccessfully": 10.007296562194824, "elegant": 7.570254802703857, "aided": 8.552803993225098, "ivory": 8.4171142578125, "beatles": 8.177177429199219, "amelia": 8.850201606750488, "cain": 9.341495513916016, "dubai": 7.874861240386963, "sunny": 6.7363972663879395, "immigrant": 7.91121244430542, "babe": 8.544633865356445, "click": 4.144445896148682, "##nder": 7.7539591789245605, "underwater": 7.820441722869873, "pepper": 5.709234714508057, "combining": 7.0842156410217285, "mumbled": 12.39769172668457, "atlas": 8.141204833984375, "horns": 8.258914947509766, "accessed": 7.181639671325684, "ballad": 8.751848220825195, "physicians": 6.506160736083984, "homeless": 8.117795944213867, "gestured": 12.756325721740723, "rpm": 7.926130771636963, "freak": 8.643525123596191, "louisville": 8.107982635498047, "corporations": 7.253627777099609, "patriots": 8.209906578063965, "prizes": 8.221619606018066, "rational": 7.412303924560547, "warn": 8.22668170928955, "modes": 7.845546245574951, "decorative": 7.467563152313232, "overnight": 6.612518310546875, "din": 7.646821022033691, "troubled": 8.537683486938477, "phantom": 8.353679656982422, "##ort": 6.598723411560059, "monarch": 7.926757335662842, "sheer": 8.024781227111816, "##dorf": 8.905344009399414, "generals": 9.040842056274414, "guidelines": 5.984299659729004, "organs": 5.611021041870117, "addresses": 6.620633125305176, "##zon": 8.51711654663086, "enhance": 6.390899658203125, "curling": 8.847838401794434, "parishes": 9.561260223388672, "cord": 5.8628082275390625, "##kie": 8.514857292175293, "linux": 7.431595325469971, "caesar": 7.730769157409668, "deutsche": 9.221351623535156, "bavaria": 9.303540229797363, "##bia": 7.265849590301514, "coleman": 8.808481216430664, "cyclone": 8.787514686584473, "##eria": 7.853668212890625, "bacon": 7.126801490783691, "petty": 8.479931831359863, "##yama": 9.467777252197266, "##old": 8.039753913879395, "hampton": 8.118175506591797, "diagnosis": 5.670686721801758, "1824": 8.884716033935547, "throws": 8.462112426757812, "complexity": 7.151749610900879, "rita": 8.506430625915527, "disputed": 8.571136474609375, "##\u2083": 11.960762977600098, "pablo": 8.762632369995117, "##sch": 7.686435222625732, "marketed": 7.458498001098633, "trafficking": 8.78381633758545, "##ulus": 7.648717403411865, "examine": 6.7595319747924805, "plague": 8.001890182495117, "formats": 7.172313213348389, "##oh": 6.558843612670898, "vault": 8.272547721862793, "faithful": 8.208244323730469, "##bourne": 9.349263191223145, "webster": 7.253787517547607, "##ox": 5.265336036682129, "highlights": 7.03511381149292, "##ient": 7.133299350738525, "##ann": 7.389341831207275, "phones": 6.73553991317749, "vacuum": 6.855032444000244, "sandwich": 7.177335739135742, "modeling": 7.863619804382324, "##gated": 8.096406936645508, "bolivia": 8.460508346557617, "clergy": 9.027565002441406, "qualities": 7.059429168701172, "isabel": 9.306026458740234, "##nas": 7.53787899017334, "##ars": 8.204100608825684, "wears": 7.770438194274902, "screams": 10.064085960388184, "reunited": 9.138015747070312, "annoyed": 9.453252792358398, "bra": 6.320709228515625, "##ancy": 6.697889804840088, "##rate": 6.837168216705322, "differential": 7.393377780914307, "transmitter": 8.522787094116211, "tattoo": 7.470338344573975, "container": 6.134397506713867, "poker": 8.225836753845215, "##och": 6.453598499298096, "excessive": 6.078378200531006, "resides": 7.895297527313232, "cowboys": 8.287266731262207, "##tum": 6.890523910522461, "augustus": 8.753995895385742, "trash": 7.6491923332214355, "providers": 6.180156230926514, "statute": 7.025270938873291, "retreated": 10.085562705993652, "balcony": 8.830670356750488, "reversed": 8.11287784576416, "void": 7.490997314453125, "storey": 9.318550109863281, "preceded": 8.149392127990723, "masses": 7.348802089691162, "leap": 7.800360202789307, "laughs": 9.322338104248047, "neighborhoods": 7.564131259918213, "wards": 9.424820899963379, "schemes": 8.142370223999023, "falcon": 8.44197940826416, "santo": 8.629507064819336, "battlefield": 8.425849914550781, "pad": 6.57064151763916, "ronnie": 9.181010246276855, "thread": 6.7359209060668945, "lesbian": 8.775727272033691, "venus": 7.51064395904541, "##dian": 7.35197114944458, "beg": 8.21198844909668, "sandstone": 8.47125244140625, "daylight": 6.606475353240967, "punched": 9.575823783874512, "gwen": 9.193164825439453, "analog": 7.615579605102539, "stroked": 11.071379661560059, "wwe": 8.15843677520752, "acceptable": 6.88963508605957, "measurements": 6.59177303314209, "dec": 5.634233474731445, "toxic": 6.262037754058838, "##kel": 7.015146255493164, "adequate": 6.729465007781982, "surgical": 6.076602935791016, "economist": 8.591029167175293, "parameters": 7.283807754516602, "varsity": 9.183208465576172, "##sberg": 9.639764785766602, "quantity": 6.321275234222412, "ella": 8.812272071838379, "##chy": 6.268701076507568, "##rton": 9.118223190307617, "countess": 10.218900680541992, "generating": 7.517695426940918, "precision": 7.4379167556762695, "diamonds": 7.8137030601501465, "expressway": 9.296119689941406, "ga": 5.140157699584961, "##\u0131": 9.955940246582031, "1821": 8.738353729248047, "uruguay": 8.946183204650879, "talents": 8.332771301269531, "galleries": 8.544633865356445, "expenses": 5.800956726074219, "scanned": 8.455710411071777, "colleague": 8.747567176818848, "outlets": 7.704836845397949, "ryder": 9.592257499694824, "lucien": 10.916709899902344, "##ila": 6.036720275878906, "paramount": 8.37014102935791, "##bon": 7.60871696472168, "syracuse": 8.566967964172363, "dim": 6.631213188171387, "fangs": 9.76747989654541, "gown": 8.232194900512695, "sweep": 8.179998397827148, "##sie": 8.532501220703125, "toyota": 7.337440013885498, "missionaries": 9.371603012084961, "websites": 6.786515235900879, "##nsis": 9.10084056854248, "sentences": 6.529982566833496, "adviser": 8.47829818725586, "val": 6.748862266540527, "trademark": 6.893195629119873, "spells": 8.254121780395508, "##plane": 8.728525161743164, "patience": 7.983814716339111, "starter": 7.441575050354004, "slim": 7.052346706390381, "##borg": 9.572568893432617, "toe": 6.688308238983154, "incredibly": 7.36689567565918, "shoots": 7.999191761016846, "elliot": 9.211112022399902, "nobility": 8.82680892944336, "##wyn": 8.80923843383789, "cowboy": 8.580129623413086, "endorsed": 8.410484313964844, "gardner": 8.836100578308105, "tendency": 7.203593730926514, "persuaded": 9.567707061767578, "organisms": 5.726438999176025, "emissions": 7.317479133605957, "kazakhstan": 8.97169017791748, "amused": 10.499886512756348, "boring": 8.107232093811035, "chips": 6.970210075378418, "themed": 8.192998886108398, "##hand": 7.156524658203125, "llc": 6.575984001159668, "constantinople": 9.261007308959961, "chasing": 8.795699119567871, "systematic": 7.491199493408203, "guatemala": 8.21867847442627, "borrowed": 7.905674457550049, "erin": 8.638404846191406, "carey": 8.739059448242188, "##hard": 8.739765167236328, "highlands": 8.175970077514648, "struggles": 8.397858619689941, "1810": 9.068917274475098, "##ifying": 7.573110580444336, "##ced": 7.487154006958008, "wong": 9.607282638549805, "exceptions": 6.928937911987305, "develops": 6.468721866607666, "enlarged": 7.083810806274414, "kindergarten": 7.974568843841553, "castro": 8.94444751739502, "##ern": 6.865927696228027, "##rina": 8.850201606750488, "leigh": 9.092763900756836, "zombie": 8.703006744384766, "juvenile": 7.6395063400268555, "##most": 7.027308464050293, "consul": 9.526529312133789, "##nar": 7.616497993469238, "sailor": 8.88553237915039, "hyde": 8.839998245239258, "clarence": 9.200977325439453, "intensive": 7.337961673736572, "pinned": 9.102869987487793, "nasty": 8.1844482421875, "useless": 8.299017906188965, "jung": 9.029451370239258, "clayton": 8.680784225463867, "stuffed": 7.830920696258545, "exceptional": 7.319184303283691, "ix": 7.873077869415283, "apostolic": 10.35487174987793, "230": 7.107834339141846, "transactions": 6.625141620635986, "##dge": 8.019611358642578, "exempt": 6.818892478942871, "swinging": 8.847838401794434, "cove": 8.100499153137207, "religions": 8.186477661132812, "##ash": 7.573770999908447, "shields": 8.769886016845703, "dairy": 6.339432716369629, "bypass": 7.443698883056641, "190": 7.143698215484619, "pursuing": 8.043268203735352, "bug": 7.0165324211120605, "joyce": 9.0303955078125, "bombay": 9.684176445007324, "chassis": 8.349844932556152, "southampton": 9.13486385345459, "chat": 6.868643283843994, "interact": 6.811058521270752, "redesignated": 11.25442886352539, "##pen": 6.213316917419434, "nascar": 8.240736961364746, "pray": 8.517682075500488, "salmon": 6.554464817047119, "rigid": 7.089355945587158, "regained": 9.761573791503906, "malaysian": 9.405389785766602, "grim": 8.283679008483887, "publicity": 8.839217185974121, "constituted": 9.026623725891113, "capturing": 8.515986442565918, "toilet": 6.926169395446777, "delegate": 8.042916297912598, "purely": 8.000539779663086, "tray": 7.162051200866699, "drift": 7.759775638580322, "loosely": 7.585506916046143, "striker": 9.805713653564453, "weakened": 7.814262866973877, "trinidad": 8.559861183166504, "mitch": 9.0144624710083, "itv": 9.20322036743164, "defines": 6.691492080688477, "transmitted": 6.545607089996338, "ming": 8.392353057861328, "scarlet": 8.571733474731445, "nodding": 10.724571228027344, "fitzgerald": 8.552803993225098, "fu": 6.270493507385254, "narrowly": 9.16683292388916, "sp": 4.7630295753479, "tooth": 5.9425578117370605, "standings": 9.632838249206543, "virtue": 7.98846960067749, "##\u2081": 12.015321731567383, "##wara": 9.911643981933594, "##cting": 7.325003623962402, "chateau": 9.306026458740234, "gloves": 7.612599849700928, "lid": 6.769036293029785, "##nel": 7.429496765136719, "hurting": 8.583145141601562, "conservatory": 9.484002113342285, "##pel": 7.165850639343262, "sinclair": 9.518800735473633, "reopened": 9.63111400604248, "sympathy": 8.499184608459473, "nigerian": 8.98604679107666, "strode": 11.336292266845703, "advocated": 9.091758728027344, "optional": 6.728046894073486, "chronic": 5.361880302429199, "discharge": 6.368093490600586, "##rc": 5.76518440246582, "suck": 8.043972969055176, "compatible": 6.847869396209717, "laurel": 8.44723892211914, "stella": 9.02474308013916, "shi": 6.81434965133667, "fails": 7.2190680503845215, "wage": 5.7744269371032715, "dodge": 7.6364545822143555, "128": 7.161759853363037, "informal": 7.142982482910156, "sorts": 7.525216579437256, "levi": 7.570254802703857, "buddha": 8.935815811157227, "villagers": 9.728752136230469, "##aka": 8.44197940826416, "chronicles": 8.644808769226074, "heavier": 7.242817401885986, "summoned": 9.271772384643555, "gateway": 7.249321460723877, "3000": 7.122166156768799, "eleventh": 8.938397407531738, "jewelry": 7.036785125732422, "translations": 6.625141620635986, "accordingly": 7.532583713531494, "seas": 7.40781831741333, "##ency": 7.329304218292236, "fiber": 5.428196907043457, "pyramid": 7.271040439605713, "cubic": 6.556532382965088, "dragging": 8.676133155822754, "##ista": 7.8545427322387695, "caring": 7.329994201660156, "##ops": 7.734123229980469, "android": 6.3393049240112305, "contacted": 7.996500492095947, "lunar": 7.710625648498535, "##dt": 8.090115547180176, "kai": 7.89803409576416, "lisbon": 9.103885650634766, "patted": 11.534859657287598, "1826": 9.082758903503418, "sacramento": 7.7563347816467285, "theft": 7.273645877838135, "madagascar": 8.425849914550781, "subtropical": 8.067499160766602, "disputes": 8.108358383178711, "ta": 5.6851348876953125, "holidays": 6.847549915313721, "piper": 8.68746566772461, "willow": 8.1478271484375, "mare": 8.27609634399414, "cane": 7.5436296463012695, "itunes": 6.77288293838501, "newfoundland": 8.603280067443848, "benny": 9.644990921020508, "companions": 8.316446304321289, "dong": 8.748991966247559, "raj": 8.62508773803711, "observe": 7.211224555969238, "roar": 9.112053871154785, "charming": 7.947334289550781, "plaque": 7.341619968414307, "tibetan": 9.052364349365234, "fossils": 7.945097923278809, "enacted": 7.544270992279053, "manning": 8.794205665588379, "bubble": 7.640917778015137, "tina": 8.747567176818848, "tanzania": 8.404403686523438, "##eda": 8.195045471191406, "##hir": 7.722560882568359, "funk": 8.791970252990723, "swamp": 8.081299781799316, "deputies": 9.461941719055176, "cloak": 9.2374906539917, "ufc": 8.718101501464844, "scenario": 7.547482013702393, "par": 5.6241254806518555, "scratch": 7.129056930541992, "metals": 6.543954849243164, "anthem": 8.319225311279297, "guru": 8.524495124816895, "engaging": 7.74948787689209, "specially": 7.373900890350342, "##boat": 8.574125289916992, "dialects": 8.383408546447754, "nineteen": 8.975259780883789, "cecil": 9.128591537475586, "duet": 9.287530899047852, "disability": 6.155068397521973, "messenger": 7.475712776184082, "unofficial": 8.286368370056152, "##lies": 7.820159912109375, "defunct": 9.402644157409668, "eds": 8.803951263427734, "moonlight": 9.427628517150879, "drainage": 7.00387716293335, "surname": 6.253888130187988, "puzzle": 7.778240203857422, "honda": 7.311025619506836, "switching": 7.574431419372559, "conservatives": 9.292428970336914, "mammals": 6.632328510284424, "knox": 8.836100578308105, "broadcaster": 9.24917984008789, "sidewalk": 8.666894912719727, "cope": 7.648005962371826, "##ried": 8.675470352172852, "benson": 9.052364349365234, "princes": 9.371603012084961, "peterson": 8.877392768859863, "##sal": 6.661075115203857, "bedford": 8.785293579101562, "sharks": 7.804233551025391, "eli": 7.054178237915039, "wreck": 8.56994342803955, "alberto": 9.856197357177734, "gasp": 9.424820899963379, "archaeology": 9.17444133758545, "lgbt": 8.872540473937988, "teaches": 7.979511260986328, "securities": 7.039491176605225, "madness": 8.852571487426758, "compromise": 7.548984527587891, "waving": 9.78139591217041, "coordination": 7.345642566680908, "davidson": 8.244174003601074, "visions": 9.113079071044922, "leased": 8.51655101776123, "possibilities": 7.675895690917969, "eighty": 8.579527854919434, "jun": 7.065370082855225, "fernandez": 9.849745750427246, "enthusiasm": 8.499739646911621, "assassin": 8.934098243713379, "sponsorship": 8.559270858764648, "reviewer": 9.357090950012207, "kingdoms": 8.28951644897461, "estonian": 10.365585327148438, "laboratories": 7.75712776184082, "##fy": 7.099579811096191, "##nal": 7.506930351257324, "applies": 6.169666767120361, "verb": 5.928781032562256, "celebrations": 8.265928268432617, "##zzo": 8.543472290039062, "rowing": 8.930671691894531, "lightweight": 7.400201797485352, "sadness": 8.491990089416504, "submit": 5.851613998413086, "mvp": 8.544052124023438, "balanced": 6.757485866546631, "dude": 8.387870788574219, "##vas": 7.015524387359619, "explicitly": 8.148609161376953, "metric": 6.609156608581543, "magnificent": 8.038702011108398, "mound": 8.313673973083496, "brett": 8.784554481506348, "mohammad": 10.118669509887695, "mistakes": 7.636923789978027, "irregular": 6.748283386230469, "##hing": 7.681519508361816, "##ass": 7.395954132080078, "sanders": 8.160809516906738, "betrayed": 9.88686752319336, "shipped": 7.570913314819336, "surge": 7.18253231048584, "##enburg": 9.159281730651855, "reporters": 8.542891502380371, "termed": 7.214293003082275, "georg": 9.36497974395752, "pity": 9.067935943603516, "verbal": 7.351265907287598, "bulls": 8.011052131652832, "abbreviated": 6.969247341156006, "enabling": 7.568063735961914, "appealed": 9.27418041229248, "##are": 7.36725378036499, "##atic": 6.679627895355225, "sicily": 8.60946273803711, "sting": 7.5593461990356445, "heel": 7.2989115715026855, "sweetheart": 9.238653182983398, "bart": 7.751852512359619, "spacecraft": 8.103859901428223, "brutal": 8.51655101776123, "monarchy": 8.117417335510254, "##tter": 7.880529403686523, "aberdeen": 9.123394012451172, "cameo": 8.845479011535645, "diane": 8.481021881103516, "##ub": 6.268163681030273, "survivor": 8.06894302368164, "clyde": 8.937536239624023, "##aries": 7.259237289428711, "complaint": 7.091800212860107, "##makers": 7.5715718269348145, "clarinet": 9.73829460144043, "delicious": 6.5581254959106445, "chilean": 9.362343788146973, "karnataka": 9.528081893920898, "coordinates": 7.270877838134766, "1818": 8.883084297180176, "panties": 10.467560768127441, "##rst": 7.644219398498535, "pretending": 9.652002334594727, "ar": 5.3435139656066895, "dramatically": 7.294239521026611, "kiev": 9.820176124572754, "bella": 8.223304748535156, "tends": 6.591608047485352, "distances": 7.1303277015686035, "113": 7.387147426605225, "catalog": 7.428925037384033, "launching": 8.085330963134766, "instances": 7.095204830169678, "telecommunications": 8.031022071838379, "portable": 6.980131149291992, "lindsay": 9.080769538879395, "vatican": 8.868515014648438, "##eim": 9.15499210357666, "angles": 6.931829929351807, "aliens": 8.531928062438965, "marker": 7.55113410949707, "stint": 9.09982681274414, "screens": 7.046092987060547, "bolton": 9.787420272827148, "##rne": 8.565779685974121, "judy": 8.539416313171387, "wool": 7.110462665557861, "benedict": 8.928963661193848, "plasma": 6.4322829246521, "europa": 9.098814964294434, "spark": 7.276585578918457, "imaging": 6.887637615203857, "filmmaker": 8.869318008422852, "swiftly": 9.51726245880127, "##een": 8.287266731262207, "contributor": 7.867746829986572, "##nor": 7.019436836242676, "opted": 8.866106986999512, "stamps": 7.702330112457275, "apologize": 9.080769538879395, "financing": 7.050909996032715, "butter": 5.707087516784668, "gideon": 10.061432838439941, "sophisticated": 7.609400749206543, "alignment": 7.592211723327637, "avery": 9.119255065917969, "chemicals": 5.978343963623047, "yearly": 6.588644504547119, "speculation": 8.186883926391602, "prominence": 8.131159782409668, "professionally": 7.7473907470703125, "##ils": 6.732497692108154, "immortal": 8.815315246582031, "institutional": 7.730511665344238, "inception": 8.345549583435059, "wrists": 8.606367111206055, "identifying": 6.873003005981445, "tribunal": 9.108983039855957, "derives": 7.325346946716309, "gains": 7.095613956451416, "##wo": 7.0805792808532715, "papal": 9.867043495178223, "preference": 7.412116527557373, "linguistic": 8.115144729614258, "vince": 8.866106986999512, "operative": 8.083863258361816, "brewery": 8.694192886352539, "##ont": 6.916767120361328, "unemployment": 6.951367378234863, "boyd": 9.033233642578125, "##ured": 6.547972202301025, "##outs": 7.789102554321289, "albeit": 8.603897094726562, "prophet": 8.150959014892578, "1813": 9.40952205657959, "bi": 5.394962310791016, "##rr": 5.60074520111084, "##face": 7.622720718383789, "##rad": 7.14198112487793, "quarterly": 7.723583221435547, "asteroid": 8.722258567810059, "cleaned": 7.566095352172852, "radius": 7.123989582061768, "temper": 8.323875427246094, "##llen": 8.771343231201172, "telugu": 9.51266098022461, "jerk": 8.042564392089844, "viscount": 10.483592987060547, "menu": 5.344176769256592, "##ote": 6.557567596435547, "glimpse": 8.45997428894043, "##aya": 8.738353729248047, "yacht": 8.340323448181152, "hawaiian": 7.401497840881348, "baden": 9.689640998840332, "##rl": 6.764028072357178, "laptop": 6.456979751586914, "readily": 7.007119655609131, "##gu": 8.195865631103516, "monetary": 7.41118049621582, "offshore": 8.138490676879883, "scots": 8.610082626342773, "watches": 7.971615314483643, "##yang": 9.997308731079102, "##arian": 8.852571487426758, "upgrade": 6.786515235900879, "needle": 6.9455952644348145, "xbox": 7.142982482910156, "lea": 8.512603759765625, "encyclopedia": 6.36407995223999, "flank": 8.29312515258789, "fingertips": 8.494197845458984, "##pus": 7.181045055389404, "delight": 8.046089172363281, "teachings": 8.766252517700195, "confirm": 6.636458873748779, "roth": 7.087594509124756, "beaches": 6.936126232147217, "midway": 8.231345176696777, "winters": 7.4471845626831055, "##iah": 8.86530590057373, "teasing": 10.0720853805542, "daytime": 7.008995056152344, "beverly": 8.090115547180176, "gambling": 8.295388221740723, "bonnie": 8.705734252929688, "##backs": 7.787465572357178, "regulated": 7.130468845367432, "clement": 8.883899688720703, "hermann": 9.58072566986084, "tricks": 7.593333721160889, "knot": 7.530894756317139, "##shing": 7.382591247558594, "##uring": 7.525846004486084, "##vre": 8.893739700317383, "detached": 8.463183403015137, "ecological": 7.977531433105469, "owed": 7.664019584655762, "specialty": 6.449871063232422, "byron": 9.111028671264648, "inventor": 7.20511531829834, "bats": 7.971287727355957, "stays": 6.790530681610107, "screened": 8.362360000610352, "unesco": 8.666894912719727, "midland": 9.08176326751709, "trim": 6.15070915222168, "affection": 7.95150089263916, "##ander": 8.286368370056152, "##rry": 8.59163761138916, "jess": 8.959295272827148, "thoroughly": 6.880898952484131, "feedback": 6.835062503814697, "##uma": 6.526036739349365, "chennai": 9.151786804199219, "strained": 8.597748756408691, "heartbeat": 7.2025299072265625, "wrapping": 8.26680850982666, "overtime": 7.05758810043335, "pleaded": 9.652002334594727, "##sworth": 9.064997673034668, "mon": 6.715464115142822, "leisure": 7.82807731628418, "oclc": 11.570157051086426, "##tate": 6.97322416305542, "##ele": 6.715557098388672, "feathers": 7.638801574707031, "angelo": 8.953154563903809, "thirds": 7.317479133605957, "nuts": 6.3102006912231445, "surveys": 7.6491923332214355, "clever": 8.08790397644043, "gill": 7.943821907043457, "commentator": 9.140122413635254, "##dos": 7.44912576675415, "darren": 9.398540496826172, "rides": 7.539154052734375, "gibraltar": 9.456140518188477, "##nc": 6.755638599395752, "##mu": 7.261168003082275, "dissolution": 8.526205062866211, "dedication": 8.182019233703613, "shin": 6.578747272491455, "meals": 6.341485023498535, "saddle": 8.038702011108398, "elvis": 8.01241683959961, "reds": 8.171558380126953, "chaired": 10.121478080749512, "taller": 7.616957664489746, "appreciation": 7.878437519073486, "functioning": 6.680258274078369, "niece": 8.86450481414795, "favored": 8.229646682739258, "advocacy": 8.11401081085205, "robbie": 9.306026458740234, "criminals": 8.413029670715332, "suffolk": 8.648026466369629, "yugoslav": 10.838826179504395, "passport": 6.588068962097168, "constable": 9.708074569702148, "congressman": 8.70915412902832, "hastings": 9.190943717956543, "vera": 7.056275367736816, "##rov": 8.221199035644531, "consecrated": 10.35487174987793, "sparks": 8.569348335266113, "ecclesiastical": 9.476593971252441, "confined": 7.81035041809082, "##ovich": 9.598907470703125, "muller": 9.569324493408203, "floyd": 8.586170196533203, "nora": 8.796445846557617, "1822": 9.0303955078125, "paved": 8.42688274383545, "1827": 9.229388236999512, "cumberland": 8.571136474609375, "ned": 8.843910217285156, "saga": 8.153314590454102, "spiral": 7.572451114654541, "##flow": 6.86365270614624, "appreciated": 7.916780471801758, "yi": 8.527918815612793, "collaborative": 7.941911697387695, "treating": 6.266435146331787, "similarities": 7.59400749206543, "feminine": 7.279369831085205, "finishes": 7.6776041984558105, "##ib": 5.954257488250732, "jade": 8.56281566619873, "import": 6.679718017578125, "##nse": 6.402228355407715, "##hot": 6.752147674560547, "champagne": 8.435705184936523, "mice": 7.35197114944458, "securing": 8.330891609191895, "celebrities": 7.666190147399902, "helsinki": 9.841207504272461, "attributes": 7.357098579406738, "##gos": 7.748176574707031, "cousins": 8.283679008483887, "phases": 7.171429634094238, "ache": 6.947005748748779, "lucia": 9.243317604064941, "gandhi": 8.992392539978027, "submission": 7.735674858093262, "vicar": 9.600577354431152, "spear": 8.21157169342041, "shine": 7.288099765777588, "tasmania": 8.623828887939453, "biting": 8.130776405334473, "detention": 7.953108310699463, "constitute": 7.459872245788574, "tighter": 9.010750770568848, "seasonal": 6.886972904205322, "##gus": 6.341934680938721, "terrestrial": 7.745036602020264, "matthews": 9.156063079833984, "##oka": 8.321083068847656, "effectiveness": 6.858794212341309, "parody": 9.161433219909668, "philharmonic": 10.655064582824707, "##onic": 7.503641605377197, "1816": 9.266973495483398, "strangers": 8.701645851135254, "encoded": 8.307694435119629, "consortium": 8.800942420959473, "guaranteed": 6.834116458892822, "regards": 7.687174320220947, "shifts": 7.654905796051025, "tortured": 9.843335151672363, "collision": 7.832059860229492, "supervisor": 7.719245433807373, "inform": 6.95408821105957, "broader": 7.6082611083984375, "insight": 7.215061664581299, "theaters": 7.865386486053467, "armour": 8.712586402893066, "emeritus": 9.79145622253418, "blink": 8.594688415527344, "incorporates": 8.145094871520996, "mapping": 7.705589771270752, "##50": 6.807676315307617, "##ein": 7.23494291305542, "handball": 10.981040954589844, "flexible": 6.3746418952941895, "##nta": 6.893976211547852, "substantially": 7.616727828979492, "generous": 7.374261856079102, "thief": 8.788997650146484, "##own": 6.396581649780273, "carr": 7.5706939697265625, "loses": 7.506930351257324, "1793": 9.064997673034668, "prose": 7.979841709136963, "ucla": 8.635217666625977, "romeo": 8.40339469909668, "generic": 6.389012813568115, "metallic": 7.165557861328125, "realization": 9.02099323272705, "damages": 6.9690070152282715, "mk": 8.299017906188965, "commissioners": 8.529634475708008, "zach": 9.037981986999512, "default": 5.8375139236450195, "##ther": 6.825537204742432, "helicopters": 9.228236198425293, "lengthy": 8.142759323120117, "stems": 6.886419296264648, "spa": 5.749328136444092, "partnered": 8.739059448242188, "spectators": 9.331233024597168, "rogue": 8.363329887390137, "indication": 7.0165324211120605, "penalties": 7.250435829162598, "teresa": 8.448293685913086, "1801": 8.897868156433105, "sen": 6.918137550354004, "##tric": 6.314628601074219, "dalton": 8.890448570251465, "##wich": 9.72307014465332, "irving": 8.661654472351074, "photographic": 8.666237831115723, "##vey": 8.662961959838867, "dell": 7.555448055267334, "deaf": 7.963130950927734, "peters": 9.286309242248535, "excluded": 7.871001243591309, "unsure": 7.981494903564453, "##vable": 7.194512844085693, "patterson": 9.086749076843262, "crawled": 10.89819049835205, "##zio": 8.878204345703125, "resided": 9.067935943603516, "whipped": 8.544052124023438, "latvia": 9.224787712097168, "slower": 7.224642276763916, "ecole": 10.77735424041748, "pipes": 7.288761615753174, "employers": 6.127169132232666, "maharashtra": 9.366301536560059, "comparable": 7.20328950881958, "va": 4.886601448059082, "textile": 8.209906578063965, "pageant": 9.169000625610352, "##gel": 7.642096042633057, "alphabet": 6.84202766418457, "binary": 7.4462151527404785, "irrigation": 7.907209873199463, "chartered": 8.241166114807129, "choked": 10.479560852050781, "antoine": 9.44606876373291, "offs": 8.056023597717285, "waking": 8.112122535705566, "supplement": 6.172807693481445, "##wen": 8.904510498046875, "quantities": 6.874314785003662, "demolition": 8.699607849121094, "regain": 8.36770248413086, "locate": 6.501478672027588, "urdu": 8.386877059936523, "folks": 7.267306327819824, "alt": 6.964209079742432, "114": 7.414366245269775, "##mc": 7.4236063957214355, "scary": 8.031717300415039, "andreas": 8.970799446105957, "whites": 7.2212324142456055, "##ava": 7.48634672164917, "classrooms": 8.728525161743164, "mw": 8.167962074279785, "aesthetic": 7.820723533630371, "publishes": 8.522218704223633, "valleys": 8.051753997802734, "guides": 6.975279331207275, "cubs": 8.240736961364746, "johannes": 9.332509994506836, "bryant": 8.49807357788086, "conventions": 8.049980163574219, "affecting": 6.5513715744018555, "##itt": 8.040104866027832, "drain": 6.173458576202393, "awesome": 7.055881977081299, "isolation": 7.771242618560791, "prosecutor": 8.572929382324219, "ambitious": 8.427399635314941, "apology": 9.592257499694824, "captive": 8.653196334838867, "downs": 7.405582904815674, "atmospheric": 6.976611137390137, "lorenzo": 9.393095016479492, "aisle": 8.595911979675293, "beef": 5.911468029022217, "foul": 7.716956615447998, "##onia": 7.97720193862915, "kidding": 9.643245697021484, "composite": 7.01602840423584, "disturbed": 8.449349403381348, "illusion": 8.462112426757812, "natives": 8.555150985717773, "##ffer": 7.707098007202148, "emi": 6.909603118896484, "rockets": 8.727827072143555, "riverside": 8.21574592590332, "wartime": 8.96902084350586, "painters": 8.722258567810059, "adolf": 8.682116508483887, "melted": 7.4462151527404785, "##ail": 7.683482646942139, "uncertainty": 8.172759056091309, "simulation": 8.366729736328125, "hawks": 8.508670806884766, "progressed": 9.058175086975098, "meantime": 8.51655101776123, "builder": 7.590643405914307, "spray": 6.212526321411133, "breach": 7.726912975311279, "unhappy": 8.637128829956055, "regina": 9.156063079833984, "russians": 9.102869987487793, "##urg": 7.447960376739502, "determining": 6.365854263305664, "##tation": 7.312211513519287, "tram": 7.848729610443115, "1806": 9.234009742736816, "##quin": 6.998661518096924, "aging": 6.68441104888916, "##12": 6.500349521636963, "1823": 9.21337890625, "garion": 15.58953857421875, "rented": 8.292222023010254, "mister": 9.691469192504883, "diaz": 8.42430305480957, "terminated": 8.364785194396973, "clip": 6.777042388916016, "1817": 9.056234359741211, "depend": 5.765798091888428, "nervously": 11.336292266845703, "disco": 6.38036584854126, "owe": 6.46464729309082, "defenders": 9.161433219909668, "shiva": 9.153923034667969, "notorious": 7.902917385101318, "disbelief": 10.15001106262207, "shiny": 7.5828375816345215, "worcester": 8.988761901855469, "##gation": 7.895905017852783, "##yr": 5.871677875518799, "trailing": 8.748279571533203, "undertook": 10.10197925567627, "islander": 9.622537612915039, "belarus": 9.224787712097168, "limitations": 6.915740489959717, "watershed": 8.586775779724121, "fuller": 8.116280555725098, "overlooking": 8.504754066467285, "utilized": 7.631078243255615, "raphael": 9.535881996154785, "1819": 8.953154563903809, "synthetic": 6.5553388595581055, "breakdown": 6.309889793395996, "klein": 8.800191879272461, "##nate": 7.17172384262085, "moaned": 12.881488800048828, "memoir": 8.815315246582031, "lamb": 6.960148334503174, "practicing": 7.610542297363281, "##erly": 8.591029167175293, "cellular": 6.375239372253418, "arrows": 8.098264694213867, "exotic": 7.5372419357299805, "##graphy": 7.707098007202148, "witches": 9.232852935791016, "117": 7.383501052856445, "charted": 8.764802932739258, "rey": 8.468016624450684, "hut": 8.100499153137207, "hierarchy": 8.05281925201416, "subdivision": 8.026165008544922, "freshwater": 7.357452869415283, "giuseppe": 10.05089282989502, "aloud": 9.090754508972168, "reyes": 10.032711029052734, "qatar": 8.613190650939941, "marty": 9.031340599060059, "sideways": 8.709839820861816, "utterly": 9.326140403747559, "sexually": 7.078699111938477, "jude": 8.82680892944336, "prayers": 8.80621337890625, "mccarthy": 8.931528091430664, "softball": 8.548127174377441, "blend": 6.220685958862305, "damien": 10.296234130859375, "##gging": 7.738785743713379, "##metric": 7.434272289276123, "wholly": 8.105731964111328, "erupted": 8.3943510055542, "lebanese": 9.809823989868164, "negro": 8.58859634399414, "revenues": 7.526055812835693, "tasted": 9.008899688720703, "comparative": 8.023055076599121, "teamed": 9.038934707641602, "transaction": 6.424928188323975, "labeled": 7.067358016967773, "maori": 9.026623725891113, "sovereignty": 8.476668357849121, "parkway": 8.261101722717285, "trauma": 6.46319580078125, "gran": 6.659132480621338, "malay": 8.96990966796875, "121": 7.233062267303467, "advancement": 7.7664265632629395, "descendant": 8.461577415466309, "2020": 7.654666900634766, "buzz": 7.635985851287842, "salvation": 8.63776683807373, "inventory": 6.74366569519043, "symbolic": 7.4889726638793945, "##making": 7.967037677764893, "antarctica": 7.91121244430542, "mps": 9.342785835266113, "##gas": 7.772315979003906, "##bro": 5.899182319641113, "mohammed": 9.523430824279785, "myanmar": 8.910358428955078, "holt": 8.711898803710938, "submarines": 9.3518648147583, "tones": 7.895297527313232, "##lman": 8.946183204650879, "locker": 8.682116508483887, "patriarch": 8.947052001953125, "bangkok": 8.981537818908691, "emerson": 9.206595420837402, "remarks": 8.506430625915527, "predators": 7.329304218292236, "kin": 7.028711318969727, "afghan": 9.251533508300781, "confession": 9.23516845703125, "norwich": 9.816022872924805, "rental": 6.078279495239258, "emerge": 7.498115062713623, "advantages": 6.647034168243408, "##zel": 8.269011497497559, "rca": 8.741179466247559, "##hold": 7.74948787689209, "shortened": 7.646347522735596, "storms": 7.589972019195557, "aidan": 9.898054122924805, "##matic": 7.044276237487793, "autonomy": 8.858918190002441, "compliance": 6.657634258270264, "##quet": 8.386877059936523, "dudley": 9.822259902954102, "atp": 6.828563213348389, "##osis": 5.835034370422363, "1803": 8.744013786315918, "motto": 8.214491844177246, "documentation": 6.839700698852539, "summary": 5.683471202850342, "professors": 8.205342292785645, "spectacular": 7.386599540710449, "christina": 8.567562103271484, "archdiocese": 10.398435592651367, "flashing": 8.311830520629883, "innocence": 8.733428001403809, "remake": 8.618183135986328, "##dell": 8.740472793579102, "psychic": 8.464255332946777, "reef": 7.921133518218994, "scare": 8.51711654663086, "employ": 7.6037139892578125, "rs": 6.662489891052246, "sticks": 7.333796977996826, "meg": 8.070027351379395, "gus": 8.619434356689453, "leans": 10.045663833618164, "##ude": 7.4293060302734375, "accompany": 7.888036727905273, "bergen": 8.963704109191895, "tomas": 9.832742691040039, "##iko": 8.746855735778809, "doom": 8.746855735778809, "wages": 6.226162433624268, "pools": 7.288596153259277, "##nch": 6.390832424163818, "##bes": 7.373000144958496, "breasts": 7.281504154205322, "scholarly": 8.605749130249023, "alison": 9.0659761428833, "outline": 7.270715236663818, "brittany": 9.089751243591309, "breakthrough": 8.131545066833496, "willis": 8.55868148803711, "realistic": 7.498727798461914, "##cut": 6.371858596801758, "##boro": 8.062103271484375, "competitor": 8.28099536895752, "##stan": 7.532794952392578, "pike": 8.123501777648926, "picnic": 7.980833530426025, "icon": 6.167398929595947, "designing": 7.621565341949463, "commercials": 8.173962593078613, "washing": 6.938455581665039, "villain": 8.28099536895752, "skiing": 8.146655082702637, "micro": 5.2725629806518555, "costumes": 8.727128982543945, "auburn": 8.389362335205078, "halted": 9.644990921020508, "executives": 7.7954020500183105, "##hat": 7.591987609863281, "logistics": 7.794029235839844, "cycles": 6.927552700042725, "vowel": 8.295841217041016, "applicable": 6.42758321762085, "barrett": 8.872540473937988, "exclaimed": 10.87402057647705, "eurovision": 11.014827728271484, "eternity": 9.311017036437988, "ramon": 9.170086860656738, "##umi": 7.297574520111084, "##lls": 7.305118560791016, "modifications": 8.01892375946045, "sweeping": 8.46532917022705, "disgust": 9.687816619873047, "##uck": 7.707098007202148, "torch": 8.273433685302734, "aviv": 9.44178295135498, "ensuring": 7.27266788482666, "rude": 8.38538932800293, "dusty": 9.02099323272705, "sonic": 8.311369895935059, "donovan": 9.531194686889648, "outskirts": 9.255075454711914, "cu": 5.1372456550598145, "pathway": 7.384411334991455, "##band": 8.05246353149414, "##gun": 8.431024551391602, "##lines": 7.691622734069824, "disciplines": 7.809235572814941, "acids": 5.7444748878479, "cadet": 9.345372200012207, "paired": 7.543202877044678, "##40": 6.8973283767700195, "sketches": 9.187621116638184, "##sive": 7.3445916175842285, "marriages": 8.485394477844238, "##\u207a": 12.15555191040039, "folding": 8.207829475402832, "peers": 7.853085994720459, "slovak": 9.636295318603516, "implies": 7.1371331214904785, "admired": 8.879827499389648, "##beck": 9.037030220031738, "1880s": 8.812272071838379, "leopold": 9.706216812133789, "instinct": 8.555150985717773, "attained": 8.461042404174805, "weston": 9.327410697937012, "megan": 8.894564628601074, "horace": 9.401274681091309, "##ination": 6.822728633880615, "dorsal": 7.707098007202148, "ingredients": 5.562315464019775, "evolutionary": 7.791563034057617, "##its": 7.674190521240234, "complications": 6.400932788848877, "deity": 8.77792739868164, "lethal": 7.9624810218811035, "brushing": 8.007309913635254, "levy": 8.212821960449219, "deserted": 9.75570297241211, "institutes": 8.07546615600586, "posthumously": 9.953558921813965, "delivering": 7.33622407913208, "telescope": 8.153314590454102, "coronation": 9.676937103271484, "motivated": 8.054954528808594, "rapids": 8.313213348388672, "luc": 8.046089172363281, "flicked": 12.245499610900879, "pays": 6.2232489585876465, "volcano": 7.156524658203125, "tanner": 9.057204246520996, "weighed": 7.719754695892334, "##nica": 9.089751243591309, "crowds": 8.089377403259277, "frankie": 9.287530899047852, "gifted": 8.51711654663086, "addressing": 7.833200454711914, "granddaughter": 9.170086860656738, "winding": 8.198740005493164, "##rna": 7.850179195404053, "constantine": 9.51113224029541, "gomez": 9.046586036682129, "##front": 7.176299571990967, "landscapes": 8.290417671203613, "rudolf": 9.685995101928711, "anthropology": 8.544633865356445, "slate": 7.857169151306152, "werewolf": 9.70993709564209, "##lio": 7.658014297485352, "astronomy": 8.041158676147461, "circa": 8.109862327575684, "rouge": 8.362844467163086, "dreaming": 8.671503067016602, "sack": 8.579527854919434, "knelt": 11.87596607208252, "drowned": 9.63111400604248, "naomi": 9.497474670410156, "prolific": 8.427916526794434, "tracked": 8.393351554870605, "freezing": 6.789022922515869, "herb": 6.468066215515137, "##dium": 7.7195000648498535, "agony": 9.9093656539917, "randall": 8.93238353729248, "twisting": 8.324341773986816, "wendy": 8.435705184936523, "deposit": 6.174707412719727, "touches": 8.038352012634277, "vein": 6.73773193359375, "wheeler": 8.98063850402832, "##bbled": 9.749866485595703, "##bor": 7.638566493988037, "batted": 10.413389205932617, "retaining": 7.947334289550781, "tire": 6.811675071716309, "presently": 8.291769981384277, "compare": 5.6720662117004395, "specification": 7.521866798400879, "daemon": 9.980066299438477, "nigel": 9.567707061767578, "##grave": 10.2408447265625, "merry": 8.993303298950195, "recommendation": 7.316457271575928, "czechoslovakia": 9.279014587402344, "sandra": 8.808481216430664, "ng": 7.0112504959106445, "roma": 8.387870788574219, "##sts": 6.834326267242432, "lambert": 8.993303298950195, "inheritance": 7.68250036239624, "sheikh": 9.925421714782715, "winchester": 9.112053871154785, "cries": 9.382290840148926, "examining": 7.843814373016357, "##yle": 7.001141548156738, "comeback": 8.796445846557617, "cuisine": 7.14412784576416, "nave": 8.589203834533691, "##iv": 6.834221363067627, "ko": 5.549787998199463, "retrieve": 7.415493011474609, "tomatoes": 6.7675604820251465, "barker": 9.335068702697754, "polished": 8.050688743591309, "defining": 7.089763164520264, "irene": 9.395813941955566, "lantern": 9.095785140991211, "personalities": 8.348889350891113, "begging": 9.653762817382812, "tract": 5.7390828132629395, "swore": 10.292889595031738, "1809": 8.926405906677246, "175": 7.048433780670166, "##gic": 7.030627727508545, "omaha": 8.270336151123047, "brotherhood": 9.243317604064941, "##rley": 9.584007263183594, "haiti": 8.387870788574219, "##ots": 6.804407119750977, "exeter": 9.939391136169434, "##ete": 6.214786052703857, "##zia": 8.671503067016602, "steele": 9.50503921508789, "dumb": 7.734381675720215, "pearson": 8.586775779724121, "210": 7.04518461227417, "surveyed": 8.258914947509766, "elisabeth": 9.620831489562988, "trends": 6.79264497756958, "##ef": 6.077243328094482, "fritz": 9.588949203491211, "##rf": 7.652283191680908, "premium": 5.78957986831665, "bugs": 7.377874851226807, "fraction": 6.562280178070068, "calmly": 10.358429908752441, "viking": 8.613813400268555, "##birds": 7.9454169273376465, "tug": 8.977049827575684, "inserted": 6.9780659675598145, "unusually": 7.886229991912842, "##ield": 9.349263191223145, "confronted": 9.123394012451172, "distress": 7.440418720245361, "crashing": 9.196505546569824, "brent": 8.453055381774902, "turks": 8.907011985778809, "resign": 8.985143661499023, "##olo": 6.829085350036621, "cambodia": 8.605131149291992, "gabe": 10.022467613220215, "sauce": 5.764174938201904, "##kal": 7.5685014724731445, "evelyn": 9.55325984954834, "116": 7.452630043029785, "extant": 8.68813705444336, "clusters": 7.720009803771973, "quarry": 8.778661727905273, "teenagers": 7.761102199554443, "luna": 8.786033630371094, "##lers": 7.685450077056885, "##ister": 8.328547477722168, "affiliation": 8.114388465881348, "drill": 7.3115339279174805, "##ashi": 9.20209789276123, "panthers": 9.011677742004395, "scenic": 7.588407039642334, "libya": 8.654492378234863, "anita": 9.515726089477539, "strengthen": 7.213525295257568, "inscriptions": 9.751808166503906, "##cated": 7.619950294494629, "lace": 7.531527996063232, "sued": 8.136556625366211, "judith": 9.157135009765625, "riots": 9.415058135986328, "##uted": 7.364035606384277, "mint": 7.074414253234863, "##eta": 6.86311149597168, "preparations": 8.128856658935547, "midst": 8.33324146270752, "dub": 8.074738502502441, "challenger": 8.426366806030273, "##vich": 9.40676498413086, "mock": 8.493093490600586, "cf": 6.592432498931885, "displaced": 8.385885238647461, "wicket": 11.115997314453125, "breaths": 8.559861183166504, "enables": 6.742034912109375, "schmidt": 9.424820899963379, "analyst": 7.18253231048584, "##lum": 7.489781856536865, "ag": 5.857215404510498, "highlight": 7.175707817077637, "automotive": 7.139411449432373, "axe": 8.847838401794434, "josef": 9.721183776855469, "newark": 8.228798866271973, "sufficiently": 8.27609634399414, "resembles": 7.46855354309082, "50th": 8.291769981384277, "##pal": 7.128915786743164, "flushed": 8.828351974487305, "mum": 7.56217098236084, "traits": 6.934149742126465, "##ante": 8.299927711486816, "commodore": 9.644990921020508, "incomplete": 7.450098037719727, "warming": 7.332585334777832, "titular": 9.345372200012207, "ceremonial": 8.613190650939941, "ethical": 7.470139980316162, "118": 7.390990734100342, "celebrating": 7.891963481903076, "eighteenth": 8.568157196044922, "cao": 9.454695701599121, "lima": 8.242453575134277, "medalist": 9.818097114562988, "mobility": 7.474117279052734, "strips": 7.20862340927124, "snakes": 7.282819747924805, "##city": 7.8400726318359375, "miniature": 7.888941764831543, "zagreb": 10.413389205932617, "barton": 9.021928787231445, "escapes": 8.912875175476074, "umbrella": 7.723583221435547, "automated": 7.183873176574707, "doubted": 10.761224746704102, "differs": 7.069350242614746, "cooled": 7.626194477081299, "georgetown": 8.52849006652832, "dresden": 10.372793197631836, "cooked": 5.753562927246094, "fade": 8.006630897521973, "wyatt": 9.19762134552002, "rna": 6.5831522941589355, "jacobs": 8.65709114074707, "carlton": 9.128591537475586, "abundant": 6.769725799560547, "stereo": 7.514578342437744, "boost": 6.3102006912231445, "madras": 10.26328182220459, "inning": 8.914556503295898, "##hia": 8.536529541015625, "spur": 7.734381675720215, "ip": 5.897368907928467, "malayalam": 9.980066299438477, "begged": 10.455702781677246, "osaka": 9.643245697021484, "groan": 11.056939125061035, "escaping": 8.84312629699707, "charging": 7.080444812774658, "dose": 5.629024982452393, "vista": 6.969728946685791, "##aj": 8.603897094726562, "bud": 7.223865985870361, "papa": 7.760040760040283, "communists": 9.494464874267578, "advocates": 8.046089172363281, "edged": 9.086749076843262, "tri": 5.407700061798096, "##cent": 6.769134521484375, "resemble": 7.508166790008545, "peaking": 9.00336742401123, "necklace": 8.367216110229492, "fried": 6.891079902648926, "montenegro": 9.466315269470215, "saxony": 9.898054122924805, "goose": 7.976542949676514, "glances": 11.47866439819336, "stuttgart": 10.155817031860352, "curator": 9.491464614868164, "recruit": 7.682254791259766, "grocery": 6.935893535614014, "sympathetic": 7.864208698272705, "##tting": 7.818190574645996, "##fort": 8.028244018554688, "127": 7.505695819854736, "lotus": 8.840779304504395, "randolph": 8.682116508483887, "ancestor": 7.401127338409424, "##rand": 8.222040176391602, "succeeding": 9.070882797241211, "jupiter": 7.263425350189209, "1798": 9.089751243591309, "macedonian": 9.82643985748291, "##heads": 8.121596336364746, "hiking": 7.623645782470703, "1808": 9.211112022399902, "handing": 9.486980438232422, "fischer": 9.660836219787598, "##itive": 7.381500720977783, "garbage": 7.8787360191345215, "node": 7.343542098999023, "##pies": 6.628471851348877, "prone": 7.139411449432373, "singular": 7.018678188323975, "papua": 9.0659761428833, "inclined": 8.430505752563477, "attractions": 6.850749969482422, "italia": 9.987420082092285, "pouring": 8.321083068847656, "motioned": 12.881488800048828, "grandma": 9.015393257141113, "garnered": 9.248003959655762, "jacksonville": 7.996836185455322, "corp": 7.330166816711426, "ego": 8.074012756347656, "ringing": 8.239022254943848, "aluminum": 6.359232425689697, "##hausen": 10.365585327148438, "ordering": 7.49791145324707, "##foot": 8.116280555725098, "drawer": 8.373563766479492, "traders": 8.205342292785645, "synagogue": 9.76747989654541, "##play": 7.7664265632629395, "##kawa": 10.05614948272705, "resistant": 6.510256290435791, "wandering": 8.80923843383789, "fragile": 8.135011672973633, "fiona": 9.585651397705078, "teased": 10.019922256469727, "var": 6.525033950805664, "hardcore": 9.111028671264648, "soaked": 7.985806941986084, "jubilee": 9.629392623901367, "decisive": 8.68478775024414, "exposition": 8.876582145690918, "mercer": 8.748991966247559, "poster": 7.795677185058594, "valencia": 9.084752082824707, "hale": 8.408961296081543, "kuwait": 8.541152000427246, "1811": 9.288752555847168, "##ises": 7.83035135269165, "##wr": 7.444085597991943, "##eed": 8.270336151123047, "tavern": 8.943581581115723, "gamma": 7.640212059020996, "122": 7.2107648849487305, "johan": 9.732558250427246, "##uer": 8.11401081085205, "airways": 7.276585578918457, "amino": 6.111081600189209, "gil": 7.712141513824463, "##ury": 8.56875228881836, "vocational": 8.089746475219727, "domains": 7.914921283721924, "torres": 9.37826919555664, "##sp": 5.084754467010498, "generator": 7.416621208190918, "folklore": 8.620060920715332, "outcomes": 7.088813781738281, "##keeper": 8.484299659729004, "canberra": 9.529637336730957, "shooter": 8.356082916259766, "fl": 5.069200038909912, "beams": 8.291769981384277, "confrontation": 9.044668197631836, "##lling": 8.137716293334961, "##gram": 6.614287853240967, "feb": 6.4495849609375, "aligned": 7.977861404418945, "forestry": 8.846264839172363, "pipeline": 7.899862766265869, "jax": 9.753753662109375, "motorway": 9.47364616394043, "conception": 7.531527996063232, "decay": 6.894534111022949, "##tos": 7.000024795532227, "coffin": 8.93324089050293, "##cott": 8.603897094726562, "stalin": 8.543472290039062, "1805": 9.313522338867188, "escorted": 10.170479774475098, "minded": 8.37111759185791, "##nam": 9.084752082824707, "sitcom": 7.755278587341309, "purchasing": 6.728897571563721, "twilight": 8.295388221740723, "veronica": 9.287530899047852, "additions": 7.9894700050354, "passive": 7.24598503112793, "tensions": 8.870122909545898, "straw": 7.086241722106934, "123": 7.3046135902404785, "frequencies": 7.6465840339660645, "1804": 8.860511779785156, "refugee": 9.041797637939453, "cultivation": 8.252819061279297, "##iate": 7.261490345001221, "christie": 8.90201473236084, "clary": 10.546113967895508, "bulletin": 8.180806159973145, "crept": 10.550423622131348, "disposal": 7.531316757202148, "##rich": 7.9654083251953125, "##zong": 11.594400405883789, "processor": 7.0501275062561035, "crescent": 8.20162296295166, "##rol": 7.138129234313965, "bmw": 8.028937339782715, "emphasized": 8.765527725219727, "whale": 7.486145496368408, "nazis": 8.678788185119629, "aurora": 8.168760299682617, "##eng": 7.847860336303711, "dwelling": 7.980502605438232, "hauled": 9.789436340332031, "sponsors": 8.306319236755371, "toledo": 8.834546089172363, "mega": 6.652714729309082, "ideology": 8.615059852600098, "theatres": 8.989667892456055, "tessa": 10.626693725585938, "cerambycidae": 14.123201370239258, "saves": 7.539154052734375, "turtle": 7.690385341644287, "cone": 7.363500118255615, "suspects": 8.450407028198242, "kara": 7.910287380218506, "rusty": 8.854154586791992, "yelling": 9.836966514587402, "greeks": 7.7841997146606445, "mozart": 9.338919639587402, "shades": 7.3961381912231445, "cocked": 11.014827728271484, "participant": 8.016179084777832, "##tro": 5.279198169708252, "shire": 9.19205379486084, "spit": 8.105731964111328, "freeze": 6.0462799072265625, "necessity": 7.890451431274414, "##cos": 6.064995765686035, "inmates": 7.578183650970459, "nielsen": 9.047547340393066, "councillors": 10.95481014251709, "loaned": 10.138500213623047, "uncommon": 6.703129291534424, "omar": 9.270570755004883, "peasants": 9.285089492797852, "botanical": 7.917091369628906, "offspring": 7.430831432342529, "daniels": 9.0659761428833, "formations": 8.387870788574219, "jokes": 8.537105560302734, "1794": 9.217926979064941, "pioneers": 8.695544242858887, "sigma": 8.186071395874023, "licensing": 6.964328289031982, "##sus": 7.773390293121338, "wheelchair": 8.191364288330078, "polite": 8.571136474609375, "1807": 9.006129264831543, "liquor": 7.500772476196289, "pratt": 9.035130500793457, "trustee": 7.969650745391846, "##uta": 7.141552925109863, "forewings": 11.843963623046875, "balloon": 7.703081130981445, "##zz": 7.748176574707031, "kilometre": 9.102869987487793, "camping": 7.748438835144043, "explicit": 8.057807922363281, "casually": 9.570945739746094, "shawn": 8.355602264404297, "foolish": 8.93925952911377, "teammates": 9.292428970336914, "nm": 7.106453895568848, "hassan": 9.967930793762207, "carrie": 8.59163761138916, "judged": 8.514293670654297, "satisfy": 7.463414669036865, "vanessa": 8.928110122680664, "knives": 8.757585525512695, "selective": 7.110601425170898, "cnn": 7.325346946716309, "flowed": 9.732558250427246, "##lice": 8.12426471710205, "eclipse": 7.568282604217529, "stressed": 7.826375961303711, "eliza": 9.595577239990234, "mathematician": 8.772802352905273, "cease": 8.05281925201416, "cultivated": 7.580840587615967, "##roy": 8.597135543823242, "commissions": 7.480915546417236, "browns": 8.167563438415527, "##ania": 8.13231372833252, "destroyers": 10.38005256652832, "sheridan": 9.327410697937012, "meadow": 8.44093132019043, "##rius": 8.661654472351074, "minerals": 5.891620635986328, "##cial": 7.240921974182129, "downstream": 8.376998901367188, "clash": 8.614436149597168, "gram": 6.333173751831055, "memoirs": 9.74213695526123, "ventures": 8.791970252990723, "baha": 8.928963661193848, "seymour": 9.344078063964844, "archie": 9.394453048706055, "midlands": 9.459036827087402, "edith": 9.264582633972168, "fare": 7.220304489135742, "flynn": 9.30478286743164, "invite": 7.680294036865234, "canceled": 8.233471870422363, "tiles": 7.304445743560791, "stabbed": 9.467777252197266, "boulder": 8.483205795288086, "incorporate": 7.51064395904541, "amended": 7.583504676818848, "camden": 8.90201473236084, "facial": 6.75011682510376, "mollusk": 8.590420722961426, "unreleased": 10.467560768127441, "descriptions": 7.239345073699951, "yoga": 7.560214519500732, "grabs": 9.436097145080566, "550": 7.0741472244262695, "raises": 7.444472312927246, "ramp": 7.868633270263672, "shiver": 10.179381370544434, "##rose": 8.096406936645508, "coined": 7.559129238128662, "pioneering": 8.871733665466309, "tunes": 8.672163009643555, "qing": 9.189835548400879, "warwick": 9.545323371887207, "tops": 7.0357561111450195, "119": 7.481517314910889, "melanie": 9.374263763427734, "giles": 9.660836219787598, "##rous": 7.661372661590576, "wandered": 10.323400497436523, "##inal": 7.328098297119141, "annexed": 9.07779312133789, "nov": 6.642686367034912, "30th": 7.908439636230469, "unnamed": 9.322338104248047, "##ished": 8.042916297912598, "organizational": 7.311194896697998, "airplane": 7.608033180236816, "normandy": 8.7525634765625, "stoke": 9.35840129852295, "whistle": 8.258914947509766, "blessing": 8.644808769226074, "violations": 7.742427349090576, "chased": 9.73637866973877, "holders": 7.474316596984863, "shotgun": 8.943581581115723, "##ctic": 7.8847270011901855, "outlet": 7.160739421844482, "reactor": 8.675470352172852, "##vik": 9.884645462036133, "tires": 7.0283284187316895, "tearing": 8.18242359161377, "shores": 7.8137030601501465, "fortified": 7.753169059753418, "mascot": 8.450407028198242, "constituencies": 10.563467979431152, "nc": 5.902984619140625, "columnist": 9.0144624710083, "productive": 7.426262378692627, "tibet": 8.873347282409668, "##rta": 7.0033793449401855, "lineage": 8.384398460388184, "hooked": 8.269011497497559, "oct": 6.130178928375244, "tapes": 8.775727272033691, "judging": 8.767704963684082, "cody": 8.991483688354492, "##gger": 8.010711669921875, "hansen": 9.16683292388916, "kashmir": 9.598907470703125, "triggered": 7.491605281829834, "##eva": 7.2240214347839355, "solved": 7.938735485076904, "cliffs": 8.396353721618652, "##tree": 7.791015625, "resisted": 9.687816619873047, "anatomy": 6.647034168243408, "protesters": 9.734466552734375, "transparent": 7.394481182098389, "implied": 7.79348087310791, "##iga": 7.36689567565918, "injection": 6.182891845703125, "mattress": 7.805065631866455, "excluding": 7.430831432342529, "##mbo": 7.680049419403076, "defenses": 8.451994895935059, "helpless": 9.145407676696777, "devotion": 8.62697982788086, "##elli": 8.284126281738281, "growl": 9.745994567871094, "liberals": 9.567707061767578, "weber": 8.58859634399414, "phenomena": 7.545126438140869, "atoms": 6.126340389251709, "plug": 5.944886684417725, "##iff": 7.660412311553955, "mortality": 7.442733287811279, "apprentice": 8.190547943115234, "howe": 8.890448570251465, "convincing": 8.781603813171387, "aaa": 7.790741920471191, "swimmer": 8.934956550598145, "barber": 8.285022735595703, "leone": 9.410902976989746, "promptly": 8.039402961730957, "sodium": 5.7921342849731445, "def": 5.599797248840332, "nowadays": 7.941593647003174, "arise": 6.990273952484131, "##oning": 8.36916446685791, "gloucester": 9.484002113342285, "corrected": 8.024781227111816, "dignity": 8.345549583435059, "norm": 7.697335720062256, "erie": 8.068581581115723, "##ders": 7.76936674118042, "elders": 9.162510871887207, "evacuated": 9.620831489562988, "sylvia": 9.598907470703125, "compression": 6.81992769241333, "##yar": 9.234009742736816, "hartford": 8.409468650817871, "pose": 7.320037841796875, "backpack": 8.491438865661621, "reasoning": 7.672974109649658, "accepts": 7.541922569274902, "24th": 8.104233741760254, "wipe": 7.096159934997559, "millimetres": 9.104903221130371, "marcel": 8.983339309692383, "##oda": 8.138490676879883, "dodgers": 8.786033630371094, "albion": 10.085562705993652, "1790": 8.51711654663086, "overwhelmed": 8.809995651245117, "aerospace": 8.22752857208252, "oaks": 8.398862838745117, "1795": 9.171174049377441, "showcase": 8.20162296295166, "acknowledge": 7.813143253326416, "recovering": 8.162394523620605, "nolan": 9.072853088378906, "ashe": 8.624458312988281, "hurts": 8.113255500793457, "geology": 7.895601272583008, "fashioned": 7.9454169273376465, "disappearance": 9.223641395568848, "farewell": 8.956659317016602, "swollen": 6.600135803222656, "shrug": 10.440108299255371, "marquis": 9.332509994506836, "wimbledon": 9.244487762451172, "124": 7.613744735717773, "rue": 8.863704681396484, "1792": 8.858122825622559, "commemorate": 8.836100578308105, "reduces": 6.517349720001221, "experiencing": 6.81951379776001, "inevitable": 8.332301139831543, "calcutta": 10.38005256652832, "intel": 7.33172082901001, "##court": 9.40676498413086, "murderer": 9.346667289733887, "sticking": 7.858046531677246, "fisheries": 8.95490550994873, "imagery": 8.30815315246582, "bloom": 6.975521087646484, "280": 7.167315483093262, "brake": 7.000024795532227, "##inus": 9.15499210357666, "gustav": 9.685995101928711, "hesitation": 9.880215644836426, "memorable": 7.924253940582275, "po": 5.362290382385254, "viral": 6.341742038726807, "beans": 6.079316139221191, "accidents": 7.378961086273193, "tunisia": 9.115134239196777, "antenna": 8.028244018554688, "spilled": 9.231696128845215, "consort": 9.590601921081543, "treatments": 5.971846103668213, "aye": 8.97169017791748, "perimeter": 7.941275596618652, "##gard": 8.135397911071777, "donation": 7.531105995178223, "hostage": 9.415058135986328, "migrated": 8.681449890136719, "banker": 8.268570899963379, "addiction": 7.0445356369018555, "apex": 8.06894302368164, "lil": 7.511057376861572, "trout": 7.8036789894104, "##ously": 8.300383567810059, "conscience": 8.928963661193848, "##nova": 8.760465621948242, "rams": 8.86450481414795, "sands": 8.3613920211792, "genome": 7.4661784172058105, "passionate": 7.95988655090332, "troubles": 7.315606594085693, "##lets": 6.945008277893066, "##set": 7.3948493003845215, "amid": 8.020987510681152, "##ibility": 7.815663814544678, "##ret": 7.062329292297363, "higgins": 9.502006530761719, "exceed": 6.522337436676025, "vikings": 8.37307357788086, "##vie": 8.214491844177246, "payne": 9.125470161437988, "##zan": 7.996500492095947, "muscular": 6.758362293243408, "##ste": 6.864735126495361, "defendant": 7.235099792480469, "sucking": 8.580129623413086, "##wal": 8.504195213317871, "ibrahim": 10.2408447265625, "fuselage": 10.167530059814453, "claudia": 9.667960166931152, "vfl": 12.370662689208984, "europeans": 7.92487907409668, "snails": 8.25499153137207, "interval": 7.079504489898682, "##garh": 9.994827270507812, "preparatory": 9.252713203430176, "statewide": 7.822133541107178, "tasked": 9.0659761428833, "lacrosse": 9.0659761428833, "viktor": 10.351325035095215, "##lation": 6.557726860046387, "angola": 8.995124816894531, "##hra": 7.504462718963623, "flint": 8.290867805480957, "implications": 7.742166996002197, "employs": 7.731542110443115, "teens": 7.180599212646484, "patrons": 8.816840171813965, "stall": 8.16517448425293, "weekends": 7.711130619049072, "barriers": 7.933674335479736, "scrambled": 9.052364349365234, "nucleus": 6.2897539138793945, "tehran": 9.706216812133789, "jenna": 9.484002113342285, "parsons": 9.189835548400879, "lifelong": 8.091222763061523, "robots": 8.756866455078125, "displacement": 7.779050827026367, "5000": 7.286942481994629, "##bles": 8.666894912719727, "precipitation": 6.2508344650268555, "##gt": 7.8426618576049805, "knuckles": 9.333788871765137, "clutched": 11.739391326904297, "1802": 9.354474067687988, "marrying": 9.16683292388916, "ecology": 8.210322380065918, "marx": 8.822962760925293, "accusations": 9.537449836730957, "declare": 7.73619270324707, "scars": 8.035552978515625, "kolkata": 9.652002334594727, "mat": 6.691400527954102, "meadows": 8.61132526397705, "bermuda": 8.223725318908691, "skeleton": 7.576195240020752, "finalists": 9.689640998840332, "vintage": 7.607577800750732, "crawl": 7.777430057525635, "coordinate": 7.323631286621094, "affects": 5.630537509918213, "subjected": 8.11287784576416, "orchestral": 9.925421714782715, "mistaken": 7.933674335479736, "##tc": 7.721029281616211, "mirrors": 8.309989929199219, "dipped": 8.64931583404541, "relied": 8.495857238769531, "260": 7.155220031738281, "arches": 8.64931583404541, "candle": 7.916780471801758, "##nick": 8.564593315124512, "incorporating": 8.240307807922363, "wildly": 8.645451545715332, "fond": 7.781215667724609, "basilica": 9.497474670410156, "owl": 8.050688743591309, "fringe": 8.143148422241211, "rituals": 8.631406784057617, "whispering": 10.413389205932617, "stirred": 9.331233024597168, "feud": 8.917927742004395, "tertiary": 8.25935173034668, "slick": 8.653843879699707, "goat": 7.469544887542725, "honorable": 8.955781936645508, "whereby": 7.802571773529053, "skip": 6.662136077880859, "ricardo": 9.769455909729004, "stripes": 7.81678581237793, "parachute": 9.187621116638184, "adjoining": 8.907011985778809, "submerged": 8.456774711608887, "synthesizer": 10.3407621383667, "##gren": 8.623200416564941, "intend": 7.834914207458496, "positively": 7.923628807067871, "ninety": 8.477754592895508, "phi": 7.88142728805542, "beaver": 8.2476224899292, "partition": 7.611684799194336, "fellows": 9.443209648132324, "alexis": 9.132768630981445, "prohibition": 8.086432456970215, "carlisle": 9.448936462402344, "bizarre": 8.495304107666016, "fraternity": 9.108983039855957, "##bre": 7.083136558532715, "doubts": 9.029451370239258, "icy": 8.538838386535645, "cbc": 8.195865631103516, "aquatic": 7.41155481338501, "sneak": 8.139265060424805, "sonny": 9.354474067687988, "combines": 6.94735860824585, "airports": 7.094522953033447, "crude": 7.322260856628418, "supervised": 8.184042930603027, "spatial": 8.059952735900879, "merge": 7.253627777099609, "alfonso": 10.141366004943848, "##bic": 6.532465934753418, "corrupt": 8.359941482543945, "scan": 6.258663654327393, "undergo": 7.212604522705078, "##ams": 7.625962734222412, "disabilities": 7.129339218139648, "colombian": 9.19762134552002, "comparing": 7.204963207244873, "dolphins": 8.131929397583008, "perkins": 8.913715362548828, "##lish": 7.225419044494629, "reprinted": 9.542166709899902, "unanimous": 9.232852935791016, "bounced": 9.880215644836426, "hairs": 7.3948493003845215, "underworld": 9.113079071044922, "midwest": 7.351794719696045, "semester": 6.881119251251221, "bucket": 7.405210971832275, "paperback": 8.907848358154297, "miniseries": 9.436097145080566, "coventry": 9.83485221862793, "demise": 8.955781936645508, "##leigh": 9.324871063232422, "demonstrations": 9.148591995239258, "sensor": 7.005996227264404, "rotating": 7.6558613777160645, "yan": 8.482659339904785, "##hler": 9.14434814453125, "arrange": 7.187905788421631, "soils": 7.409124374389648, "##idge": 8.829124450683594, "hyderabad": 9.299822807312012, "labs": 7.768296241760254, "##dr": 6.709973335266113, "brakes": 7.637627124786377, "grandchildren": 8.898695945739746, "##nde": 7.898338317871094, "negotiated": 8.247191429138184, "rover": 8.682784080505371, "ferrari": 9.007975578308105, "continuation": 8.278765678405762, "directorate": 9.862690925598145, "augusta": 8.478842735290527, "stevenson": 9.357090950012207, "counterpart": 8.056736946105957, "gore": 8.524495124816895, "##rda": 7.798704624176025, "nursery": 8.056023597717285, "rican": 8.736239433288574, "ave": 6.590948581695557, "collectively": 7.460265636444092, "broadly": 7.734123229980469, "pastoral": 9.182108879089355, "repertoire": 9.27297592163086, "asserted": 9.277803421020508, "discovering": 8.240307807922363, "nordic": 8.898695945739746, "styled": 8.922158241271973, "fiba": 10.987707138061523, "cunningham": 9.489967346191406, "harley": 8.390856742858887, "middlesex": 9.093770027160645, "survives": 8.990575790405273, "tumor": 6.553988456726074, "tempo": 8.092331886291504, "zack": 8.874963760375977, "aiming": 8.625718116760254, "lok": 9.50503921508789, "urgent": 7.8229804039001465, "##rade": 8.253252983093262, "##nto": 8.304946899414062, "devils": 9.332509994506836, "##ement": 8.330891609191895, "contractor": 6.4851884841918945, "turin": 10.043060302734375, "##wl": 7.629913330078125, "##ool": 7.4149298667907715, "bliss": 8.77353286743164, "repaired": 7.963456153869629, "simmons": 8.807724952697754, "moan": 9.426223754882812, "astronomical": 8.120454788208008, "cr": 4.484285831451416, "negotiate": 7.794303894042969, "lyric": 8.271662712097168, "1890s": 9.075814247131348, "lara": 8.887988090515137, "bred": 7.58885383605957, "clad": 8.310909271240234, "angus": 8.759744644165039, "pbs": 8.55809211730957, "##ience": 7.888941764831543, "engineered": 7.624340534210205, "posed": 8.606367111206055, "##lk": 6.894868850708008, "hernandez": 9.276594161987305, "possessions": 8.65904426574707, "elbows": 8.322012901306152, "psychiatric": 7.687914848327637, "strokes": 7.599639415740967, "confluence": 8.694869041442871, "electorate": 9.785408020019531, "lifts": 8.221619606018066, "campuses": 8.320618629455566, "lava": 7.229623317718506, "alps": 8.44197940826416, "##ep": 6.153950214385986, "##ution": 7.561083793640137, "##date": 7.533006191253662, "physicist": 8.080934524536133, "woody": 7.996164321899414, "##page": 6.90949010848999, "##ographic": 8.282783508300781, "##itis": 5.600592136383057, "juliet": 8.643525123596191, "reformation": 9.042753219604492, "sparhawk": 15.078713417053223, "320": 7.149730682373047, "complement": 7.325690269470215, "suppressed": 9.131723403930664, "jewel": 7.899557590484619, "##\u00bd": 7.745036602020264, "floated": 9.807766914367676, "##kas": 8.706417083740234, "continuity": 8.222461700439453, "sadly": 8.260226249694824, "##ische": 10.34779167175293, "inability": 7.293574333190918, "melting": 7.184768199920654, "scanning": 7.920510292053223, "paula": 8.995124816894531, "flour": 6.303750514984131, "judaism": 8.986950874328613, "safer": 7.510850429534912, "vague": 8.127706527709961, "##lm": 6.757096767425537, "solving": 7.392826080322266, "curb": 7.672974109649658, "##stown": 8.70436954498291, "financially": 8.190547943115234, "gable": 9.438936233520508, "bees": 7.534275054931641, "expired": 7.545554161071777, "miserable": 8.748991966247559, "cassidy": 9.500494003295898, "dominion": 8.579527854919434, "1789": 7.913064956665039, "cupped": 10.734908103942871, "145": 6.941843509674072, "robbery": 8.623200416564941, "facto": 8.43258285522461, "amos": 9.671541213989258, "warden": 9.224787712097168, "resume": 7.026288986206055, "tallest": 7.252988338470459, "marvin": 9.091758728027344, "ing": 5.914772987365723, "pounded": 10.11586856842041, "usd": 6.298017978668213, "declaring": 8.64931583404541, "gasoline": 6.97370719909668, "##aux": 9.657293319702148, "darkened": 9.69697380065918, "270": 7.185364723205566, "650": 7.075349807739258, "sophomore": 8.784554481506348, "##mere": 8.3527193069458, "erection": 8.289966583251953, "gossip": 8.635217666625977, "televised": 9.023804664611816, "risen": 8.036602020263672, "dial": 5.918087959289551, "##eu": 7.698083400726318, "pillars": 8.887988090515137, "##link": 7.343367099761963, "passages": 7.761102199554443, "profound": 7.921444892883301, "##tina": 6.923523426055908, "arabian": 8.284126281738281, "ashton": 9.293657302856445, "silicon": 7.008995056152344, "nail": 6.68441104888916, "##ead": 7.97720193862915, "##lated": 8.145094871520996, "##wer": 7.390440940856934, "##hardt": 9.234009742736816, "fleming": 9.029451370239258, "firearms": 8.19258975982666, "ducked": 12.344346046447754, "circuits": 7.759775638580322, "blows": 8.37503433227539, "waterloo": 9.142232894897461, "titans": 8.850201606750488, "##lina": 8.343646049499512, "atom": 6.374044895172119, "fireplace": 7.986804485321045, "cheshire": 9.417838096618652, "financed": 8.653843879699707, "activation": 7.28084659576416, "algorithms": 8.605749130249023, "##zzi": 8.56875228881836, "constituent": 7.827793598175049, "catcher": 8.877392768859863, "cherokee": 7.896817207336426, "partnerships": 8.107982635498047, "sexuality": 8.65904426574707, "platoon": 9.57419490814209, "tragic": 7.929581642150879, "vivian": 9.66617488861084, "guarded": 9.34020709991455, "whiskey": 8.121976852416992, "meditation": 8.21198844909668, "poetic": 8.511478424072266, "##late": 7.312380790710449, "##nga": 7.778510093688965, "##ake": 7.416809558868408, "porto": 9.083754539489746, "listeners": 8.890448570251465, "dominance": 8.225836753845215, "kendra": 10.34779167175293, "mona": 8.224991798400879, "chandler": 8.876582145690918, "factions": 9.256258964538574, "22nd": 8.090115547180176, "salisbury": 9.447501182556152, "attitudes": 7.867746829986572, "derivative": 7.459086894989014, "##ido": 7.247254848480225, "##haus": 9.531194686889648, "intake": 5.979594707489014, "paced": 8.595911979675293, "javier": 10.085562705993652, "illustrator": 8.829124450683594, "barrels": 8.046089172363281, "bias": 7.891660690307617, "cockpit": 9.700660705566406, "burnett": 9.625959396362305, "dreamed": 9.086749076843262, "ensuing": 9.515726089477539, "##anda": 8.876582145690918, "receptors": 6.882993221282959, "someday": 9.25862979888916, "hawkins": 9.131723403930664, "mattered": 10.89819049835205, "##lal": 8.4815673828125, "slavic": 8.728525161743164, "1799": 9.145407676696777, "jesuit": 9.775407791137695, "cameroon": 9.307271957397461, "wasted": 8.580732345581055, "tai": 7.7139129638671875, "wax": 6.6411261558532715, "lowering": 7.249798774719238, "victorious": 9.10185432434082, "freaking": 9.911643981933594, "outright": 8.756866455078125, "hancock": 8.874963760375977, "librarian": 9.064020156860352, "sensing": 8.524495124816895, "bald": 7.702079772949219, "calcium": 5.771626949310303, "myers": 8.271220207214355, "tablet": 6.375638008117676, "announcing": 8.451465606689453, "barack": 7.601222038269043, "shipyard": 9.570945739746094, "pharmaceutical": 7.495872974395752, "##uan": 8.818367004394531, "greenwich": 8.207829475402832, "flush": 7.154351234436035, "medley": 9.769455909729004, "patches": 7.175412178039551, "wolfgang": 9.75570297241211, "pt": 6.514903545379639, "speeches": 8.652547836303711, "acquiring": 8.131929397583008, "exams": 7.262779712677002, "nikolai": 11.049796104431152, "##gg": 6.539093017578125, "hayden": 9.279014587402344, "kannada": 10.077454566955566, "##type": 6.9994049072265625, "reilly": 9.140122413635254, "##pt": 5.422187805175781, "waitress": 9.08176326751709, "abdomen": 6.309329986572266, "devastated": 9.001529693603516, "capped": 8.45997428894043, "pseudonym": 9.276594161987305, "pharmacy": 6.847124099731445, "fulfill": 7.610542297363281, "paraguay": 8.96105670928955, "1796": 9.25862979888916, "clicked": 8.928963661193848, "##trom": 8.572929382324219, "archipelago": 8.160017967224121, "syndicated": 8.946183204650879, "##hman": 9.143289566040039, "lumber": 7.710878372192383, "orgasm": 8.614436149597168, "rejection": 8.273433685302734, "clifford": 9.682361602783203, "lorraine": 9.3518648147583, "advent": 8.206584930419922, "mafia": 9.270570755004883, "rodney": 9.556452751159668, "brock": 8.796445846557617, "##ght": 7.6783366203308105, "##used": 8.442503929138184, "##elia": 8.79345989227295, "cassette": 9.225935935974121, "chamberlain": 9.009824752807617, "despair": 8.96902084350586, "mongolia": 8.847838401794434, "sensors": 7.6329450607299805, "developmental": 7.247413158416748, "upstream": 8.541731834411621, "##eg": 6.627018928527832, "##alis": 7.909978866577148, "spanning": 8.062821388244629, "165": 7.204963207244873, "trombone": 9.944091796875, "basque": 9.092763900756836, "seeded": 9.128591537475586, "interred": 10.432400703430176, "renewable": 7.557611465454102, "rhys": 10.563467979431152, "leapt": 10.827364921569824, "revision": 7.754486560821533, "molecule": 6.005177974700928, "##ages": 7.098484039306641, "chord": 7.892871379852295, "vicious": 8.882268905639648, "nord": 8.458373069763184, "shivered": 12.680817604064941, "23rd": 8.063179969787598, "arlington": 8.056379318237305, "debts": 7.573110580444336, "corpus": 7.57928991317749, "sunrise": 7.306297302246094, "bays": 8.639042854309082, "blackburn": 10.250399589538574, "centimetres": 8.70436954498291, "##uded": 8.534225463867188, "shuddered": 13.25416374206543, "gm": 6.385585308074951, "strangely": 9.463397979736328, "gripping": 9.256258964538574, "cartoons": 8.862107276916504, "isabelle": 10.344270706176758, "orbital": 7.677359580993652, "##ppa": 8.383903503417969, "seals": 7.68250036239624, "proving": 8.347455978393555, "##lton": 9.190943717956543, "refusal": 8.705734252929688, "strengthened": 8.94879150390625, "bust": 7.64895486831665, "assisting": 8.079472541809082, "baghdad": 9.489967346191406, "batsman": 10.585592269897461, "portrayal": 8.60266399383545, "mara": 8.045735359191895, "pushes": 7.967037677764893, "spears": 8.827580451965332, "og": 7.589077472686768, "##cock": 8.986950874328613, "reside": 7.609857559204102, "nathaniel": 9.494464874267578, "brennan": 9.572568893432617, "1776": 8.081665992736816, "confirmation": 7.392826080322266, "caucus": 8.905344009399414, "##worthy": 8.339849472045898, "markings": 8.058164596557617, "yemen": 9.085749626159668, "nobles": 9.142232894897461, "ku": 6.472227573394775, "lazy": 8.270336151123047, "viewer": 7.929267406463623, "catalan": 9.116162300109863, "encompasses": 7.460265636444092, "sawyer": 9.280226707458496, "##fall": 8.338903427124023, "sparked": 8.736944198608398, "substances": 5.836660861968994, "patents": 8.302661895751953, "braves": 9.084752082824707, "arranger": 10.309724807739258, "evacuation": 8.723648071289062, "sergio": 10.032711029052734, "persuade": 8.724343299865723, "dover": 9.012604713439941, "tolerance": 7.31136417388916, "penguin": 8.55809211730957, "cum": 7.301590919494629, "jockey": 8.987855911254883, "insufficient": 7.680049419403076, "townships": 8.874155044555664, "occupying": 8.584354400634766, "declining": 8.328547477722168, "plural": 6.257895469665527, "processed": 6.405097484588623, "projection": 7.944140911102295, "puppet": 9.169000625610352, "flanders": 9.543744087219238, "introduces": 7.904141902923584, "liability": 6.400796413421631, "##yon": 8.62508773803711, "gymnastics": 8.676133155822754, "antwerp": 10.209641456604004, "taipei": 9.984962463378906, "hobart": 9.636295318603516, "candles": 8.288616180419922, "jeep": 7.883525848388672, "wes": 8.62697982788086, "observers": 8.884716033935547, "126": 7.5565290451049805, "chaplain": 9.732558250427246, "bundle": 7.506312847137451, "glorious": 8.649961471557617, "##hine": 8.239450454711914, "hazel": 8.214909553527832, "flung": 10.121478080749512, "sol": 6.344893455505371, "excavations": 10.027575492858887, "dumped": 9.149656295776367, "stares": 10.622042655944824, "sh": 6.682061672210693, "bangalore": 9.026623725891113, "triangular": 7.969324111938477, "icelandic": 8.999695777893066, "intervals": 7.229935646057129, "expressing": 7.998181343078613, "turbine": 8.210322380065918, "##vers": 6.76667594909668, "songwriting": 9.554855346679688, "crafts": 8.177177429199219, "##igo": 7.658733367919922, "jasmine": 8.700286865234375, "ditch": 8.37307357788086, "rite": 8.543472290039062, "##ways": 8.359941482543945, "entertaining": 8.270336151123047, "comply": 7.387695789337158, "sorrow": 8.65774154663086, "wrestlers": 9.708074569702148, "basel": 9.252713203430176, "emirates": 8.26989459991455, "marian": 9.424820899963379, "rivera": 9.24917984008789, "helpful": 5.8591156005859375, "##some": 7.378056049346924, "caution": 7.257310390472412, "downward": 7.621103763580322, "networking": 7.400941848754883, "##atory": 8.11401081085205, "##tered": 9.685995101928711, "darted": 12.370662689208984, "genocide": 9.393095016479492, "emergence": 8.300838470458984, "replies": 7.582393646240234, "specializing": 8.02064323425293, "spokesman": 8.420188903808594, "convenient": 6.249076843261719, "unlocked": 8.365270614624023, "fading": 8.913715362548828, "augustine": 8.62761116027832, "concentrations": 7.031395435333252, "resemblance": 8.495304107666016, "elijah": 9.489967346191406, "investigator": 8.415580749511719, "andhra": 9.6933012008667, "##uda": 7.678825855255127, "promotes": 7.3948493003845215, "bean": 7.034857273101807, "##rrell": 9.220208168029785, "fleeing": 9.518800735473633, "wan": 7.758450984954834, "simone": 9.685995101928711, "announcer": 9.070882797241211, "##ame": 6.391979694366455, "##bby": 8.616308212280273, "lydia": 9.454695701599121, "weaver": 8.774995803833008, "132": 7.57928991317749, "residency": 7.208470821380615, "modification": 7.5969319343566895, "##fest": 7.262296199798584, "stretches": 7.510024070739746, "##ast": 6.341100215911865, "alternatively": 7.1823835372924805, "nat": 7.294073581695557, "lowe": 8.14198112487793, "lacks": 7.762962341308594, "##ented": 7.2603631019592285, "pam": 7.80867862701416, "tile": 6.749634265899658, "concealed": 8.483752250671387, "inferior": 7.145704746246338, "abdullah": 10.234525680541992, "residences": 8.768430709838867, "tissues": 5.629875659942627, "vengeance": 9.508081436157227, "##ided": 8.639681816101074, "moisture": 6.201303482055664, "peculiar": 8.42430305480957, "groove": 8.024781227111816, "zip": 5.676051139831543, "bologna": 9.318550109863281, "jennings": 9.075814247131348, "ninja": 8.582541465759277, "oversaw": 9.927736282348633, "zombies": 9.160356521606445, "pumping": 7.710373401641846, "batch": 7.222625732421875, "livingston": 8.999695777893066, "emerald": 8.079108238220215, "installations": 7.990137100219727, "1797": 9.069899559020996, "peel": 6.8966569900512695, "nitrogen": 6.354473114013672, "rama": 8.325275421142578, "##fying": 7.789375305175781, "##star": 7.269252777099609, "schooling": 8.538838386535645, "strands": 7.375524997711182, "responding": 7.899252891540527, "werner": 9.691469192504883, "##ost": 6.452450275421143, "lime": 6.952786445617676, "casa": 8.553977012634277, "accurately": 7.2166008949279785, "targeting": 8.340797424316406, "##rod": 7.229467391967773, "underway": 8.521650314331055, "##uru": 8.977945327758789, "hemisphere": 6.873877048492432, "lester": 9.265777587890625, "##yard": 8.676133155822754, "occupies": 8.000203132629395, "2d": 8.066057205200195, "griffith": 8.700965881347656, "angrily": 10.804828643798828, "reorganized": 10.06674575805664, "##owing": 8.522218704223633, "courtney": 9.238653182983398, "deposited": 7.445633888244629, "##dd": 7.538303852081299, "##30": 6.704420566558838, "estadio": 11.725306510925293, "##ifies": 7.316457271575928, "dunn": 8.851780891418457, "exiled": 9.76747989654541, "##ying": 8.048209190368652, "checks": 6.440967082977295, "##combe": 9.775407791137695, "##\u043e": 9.006129264831543, "##fly": 8.227951049804688, "successes": 9.006129264831543, "unexpectedly": 8.850991249084473, "blu": 7.082193851470947, "assessed": 7.311872482299805, "##flower": 6.9416093826293945, "##\u0647": 9.902563095092773, "observing": 8.08203125, "sacked": 10.387365341186523, "spiders": 7.858924388885498, "kn": 7.165557861328125, "##tail": 7.782028675079346, "mu": 4.865265846252441, "nodes": 6.8034892082214355, "prosperity": 8.251951217651367, "audrey": 9.092763900756836, "divisional": 9.925421714782715, "155": 7.364035606384277, "broncos": 9.044668197631836, "tangled": 9.384981155395508, "adjust": 6.253593921661377, "feeds": 7.503846645355225, "erosion": 7.389341831207275, "paolo": 10.471545219421387, "surf": 7.445246696472168, "directory": 6.536515235900879, "snatched": 10.719443321228027, "humid": 7.143555164337158, "admiralty": 10.206573486328125, "screwed": 9.277803421020508, "gt": 7.238715171813965, "reddish": 7.547267913818359, "##nese": 7.747652530670166, "modules": 7.973255157470703, "trench": 7.9511799812316895, "lamps": 8.165572166442871, "bind": 6.936591625213623, "leah": 9.057204246520996, "bucks": 7.822415828704834, "competes": 8.984240531921387, "##nz": 7.810908317565918, "##form": 6.4777302742004395, "transcription": 7.115322589874268, "##uc": 5.606085300445557, "isles": 8.631406784057617, "violently": 9.068917274475098, "clutching": 10.935578346252441, "pga": 8.310449600219727, "cyclist": 9.763538360595703, "inflation": 6.9966816902160645, "flats": 8.367216110229492, "ragged": 9.76747989654541, "unnecessary": 7.785831451416016, "##hian": 9.25035572052002, "stubborn": 8.35656452178955, "coordinated": 7.875753879547119, "harriet": 8.972580909729004, "baba": 9.478071212768555, "disqualified": 9.816022872924805, "330": 7.361361503601074, "insect": 6.846272945404053, "wolfe": 9.346667289733887, "##fies": 7.2031378746032715, "reinforcements": 10.31653881072998, "rocked": 9.830636978149414, "duel": 8.916240692138672, "winked": 13.132802963256836, "embraced": 8.929817199707031, "bricks": 8.15685749053955, "##raj": 9.543744087219238, "hiatus": 8.983339309692383, "defeats": 9.529637336730957, "pending": 7.6494293212890625, "brightly": 8.80923843383789, "jealousy": 9.500494003295898, "##xton": 9.344078063964844, "##hm": 7.618337631225586, "##uki": 9.025683403015137, "lena": 9.034181594848633, "gdp": 7.510230541229248, "colorful": 7.416621208190918, "##dley": 9.62767505645752, "stein": 8.32995319366455, "kidney": 5.253976345062256, "##shu": 8.759744644165039, "underwear": 8.795699119567871, "wanderers": 11.336292266845703, "##haw": 8.204928398132324, "##icus": 8.606367111206055, "guardians": 8.163187980651855, "m\u00b3": 10.724571228027344, "roared": 11.078679084777832, "habits": 6.959076404571533, "##wise": 7.52984094619751, "permits": 7.07789421081543, "gp": 6.531534194946289, "uranium": 8.15685749053955, "punished": 8.98604679107666, "disguise": 9.010750770568848, "bundesliga": 10.967839241027832, "elise": 10.05614948272705, "dundee": 9.83908462524414, "erotic": 9.342785835266113, "partisan": 9.238653182983398, "pi": 5.663914680480957, "collectors": 8.202035903930664, "float": 7.2674689292907715, "individually": 7.480915546417236, "rendering": 8.093441009521484, "behavioral": 6.969849109649658, "bucharest": 10.512283325195312, "ser": 6.227307319641113, "hare": 7.680539131164551, "valerie": 9.380949020385742, "corporal": 9.374263763427734, "nutrition": 5.814017295837402, "proportional": 7.512091636657715, "##isa": 8.267688751220703, "immense": 8.381431579589844, "##kis": 8.389362335205078, "pavement": 8.480476379394531, "##zie": 8.678123474121094, "##eld": 7.978850841522217, "sutherland": 9.497474670410156, "crouched": 11.739391326904297, "1775": 8.384398460388184, "##lp": 6.672272682189941, "suzuki": 9.2838716506958, "trades": 7.737488746643066, "endurance": 7.693606376647949, "operas": 9.617426872253418, "crosby": 9.401274681091309, "prayed": 10.362001419067383, "priory": 11.237112998962402, "rory": 9.333788871765137, "socially": 8.237738609313965, "##urn": 8.073649406433105, "gujarat": 9.548490524291992, "##pu": 6.5266547203063965, "walton": 8.52849006652832, "cube": 7.000272750854492, "pasha": 11.028668403625488, "privilege": 7.9425482749938965, "lennon": 8.844694137573242, "floods": 8.433101654052734, "thorne": 10.091005325317383, "waterfall": 8.585564613342285, "nipple": 8.631406784057617, "scouting": 9.089751243591309, "approve": 7.583504676818848, "##lov": 8.18729019165039, "minorities": 8.851780891418457, "voter": 7.554583549499512, "dwight": 8.65709114074707, "extensions": 7.484533309936523, "assure": 7.907824516296387, "ballroom": 9.111028671264648, "slap": 8.821428298950195, "dripping": 8.521082878112793, "privileges": 7.93651819229126, "rejoined": 10.827364921569824, "confessed": 9.81188678741455, "demonstrating": 8.519381523132324, "patriotic": 9.199857711791992, "yell": 9.139068603515625, "investor": 7.346869945526123, "##uth": 8.043972969055176, "pagan": 8.65060806274414, "slumped": 10.719443321228027, "squares": 7.7500128746032715, "##cle": 5.855041980743408, "##kins": 8.607604026794434, "confront": 9.292428970336914, "bert": 8.701645851135254, "embarrassment": 9.156063079833984, "##aid": 7.218296527862549, "aston": 9.624246597290039, "urging": 9.37559700012207, "sweater": 8.611946105957031, "starr": 8.74614429473877, "yuri": 9.878008842468262, "brains": 7.433697700500488, "williamson": 9.145407676696777, "commuter": 8.464792251586914, "mortar": 7.8886399269104, "structured": 7.598059177398682, "selfish": 9.032286643981934, "exports": 7.990137100219727, "##jon": 8.830670356750488, "cds": 8.117795944213867, "##him": 8.350802421569824, "unfinished": 8.923006057739258, "##rre": 6.656313896179199, "mortgage": 5.866314888000488, "destinations": 7.121465682983398, "##nagar": 10.504002571105957, "canoe": 8.603280067443848, "solitary": 8.287266731262207, "buchanan": 9.087748527526855, "delays": 7.840647220611572, "magistrate": 9.06011962890625, "fk": 10.365585327148438, "##pling": 8.59836196899414, "motivation": 7.375344276428223, "##lier": 8.190140724182129, "##vier": 8.177982330322266, "recruiting": 8.067499160766602, "assess": 6.314253807067871, "##mouth": 8.515986442565918, "malik": 9.478071212768555, "antique": 7.995157241821289, "1791": 8.489786148071289, "pius": 10.585592269897461, "rahman": 10.35487174987793, "reich": 8.775727272033691, "tub": 6.496219158172607, "zhou": 9.644990921020508, "smashed": 9.502006530761719, "airs": 8.017550468444824, "galway": 9.88686752319336, "xii": 9.394453048706055, "conditioning": 6.9974236488342285, "honduras": 8.615683555603027, "discharged": 7.962806224822998, "dexter": 8.527918815612793, "##pf": 8.195865631103516, "lionel": 9.07482624053955, "129": 7.507136344909668, "debates": 8.671503067016602, "lemon": 6.1604108810424805, "tiffany": 8.86450481414795, "volunteered": 9.891326904296875, "dom": 7.7468671798706055, "dioxide": 6.020708084106445, "procession": 9.470707893371582, "devi": 7.626426696777344, "sic": 8.475040435791016, "tremendous": 7.543416500091553, "advertisements": 7.790468692779541, "colts": 9.366301536560059, "transferring": 7.621334552764893, "verdict": 8.533076286315918, "hanover": 9.015393257141113, "decommissioned": 10.704215049743652, "utter": 8.423273086547852, "relate": 7.314587116241455, "pac": 7.40614128112793, "racism": 8.409468650817871, "##top": 5.962924957275391, "beacon": 8.736944198608398, "limp": 8.541731834411621, "similarity": 8.322943687438965, "terra": 7.98116397857666, "occurrence": 7.283807754516602, "ant": 6.156614780426025, "##how": 7.444859504699707, "becky": 9.535881996154785, "capt": 7.244558334350586, "updates": 6.239465236663818, "armament": 10.061432838439941, "richie": 9.345372200012207, "pal": 6.003986358642578, "##graph": 7.6037139892578125, "halloween": 8.13231372833252, "mayo": 6.881669998168945, "##ssen": 8.738353729248047, "##bone": 7.450681686401367, "cara": 7.045573711395264, "serena": 9.064020156860352, "fcc": 8.732726097106934, "dolls": 8.718792915344238, "obligations": 7.434846878051758, "##dling": 8.450407028198242, "violated": 8.559270858764648, "lafayette": 8.571733474731445, "jakarta": 9.749866485595703, "exploitation": 8.75471305847168, "##ime": 7.033445358276367, "infamous": 8.209074974060059, "iconic": 7.252828598022461, "##lah": 9.167916297912598, "##park": 7.694102764129639, "kitty": 8.497519493103027, "moody": 8.88553237915039, "reginald": 10.135643005371094, "dread": 8.26504898071289, "spill": 7.69484806060791, "crystals": 7.024762153625488, "olivier": 9.843335151672363, "modeled": 8.595911979675293, "bluff": 8.478842735290527, "equilibrium": 7.461838722229004, "separating": 7.803125381469727, "notices": 8.054242134094238, "ordnance": 10.077454566955566, "extinction": 7.913064956665039, "onset": 6.725498676300049, "cosmic": 8.664271354675293, "attachment": 6.932641506195068, "sammy": 9.570945739746094, "expose": 7.688408374786377, "privy": 10.35487174987793, "anchored": 8.655790328979492, "##bil": 6.825953960418701, "abbott": 8.9111967086792, "admits": 8.756866455078125, "bending": 7.848729610443115, "baritone": 9.93005657196045, "emmanuel": 9.76747989654541, "policeman": 9.944091796875, "vaughan": 9.79145622253418, "winged": 8.74970531463623, "climax": 8.829124450683594, "dresses": 8.027896881103516, "denny": 9.585651397705078, "polytechnic": 9.864864349365234, "mohamed": 10.234525680541992, "burmese": 9.704360961914062, "authentic": 7.28743839263916, "nikki": 9.374263763427734, "genetics": 7.159865856170654, "grandparents": 8.2476224899292, "homestead": 8.171157836914062, "gaza": 10.019922256469727, "postponed": 9.57419490814209, "metacritic": 10.443984031677246, "una": 6.564604759216309, "##sby": 8.505870819091797, "##bat": 7.107972621917725, "unstable": 7.791563034057617, "dissertation": 9.022866249084473, "##rial": 7.156524658203125, "##cian": 8.929817199707031, "curls": 8.937536239624023, "obscure": 8.34174633026123, "uncovered": 7.752115726470947, "bronx": 8.276985168457031, "praying": 9.316032409667969, "disappearing": 9.35840129852295, "##hoe": 7.445440292358398, "prehistoric": 8.329484939575195, "coke": 8.123883247375488, "turret": 10.132794380187988, "mutations": 7.354266166687012, "nonprofit": 7.324145793914795, "pits": 8.402385711669922, "monaco": 9.29735279083252, "##\u064a": 8.790482521057129, "##usion": 7.374983310699463, "prominently": 8.90201473236084, "dispatched": 9.636295318603516, "podium": 9.970346450805664, "##mir": 8.338903427124023, "uci": 10.179381370544434, "##uation": 7.443892478942871, "133": 7.626426696777344, "fortifications": 10.176405906677246, "birthplace": 8.110992431640625, "kendall": 8.999695777893066, "##lby": 9.16683292388916, "##oll": 6.542697906494141, "preacher": 8.998780250549316, "rack": 6.663907051086426, "goodman": 9.021928787231445, "##rman": 9.158207893371582, "persistent": 6.957886219024658, "##ott": 8.882268905639648, "countless": 7.813982963562012, "jaime": 9.932381629943848, "recorder": 8.064977645874023, "lexington": 8.232194900512695, "persecution": 9.135913848876953, "jumps": 8.085698127746582, "renewal": 6.798508644104004, "wagons": 9.597241401672363, "##11": 6.598225116729736, "crushing": 8.678788185119629, "##holder": 7.747128963470459, "decorations": 8.664926528930664, "##lake": 8.581937789916992, "abundance": 7.509610652923584, "wrath": 9.080769538879395, "laundry": 7.585061550140381, "\u00a31": 7.213525295257568, "garde": 9.384981155395508, "##rp": 6.290851593017578, "jeanne": 9.09477710723877, "beetles": 8.346025466918945, "peasant": 9.156063079833984, "##sl": 6.746068000793457, "splitting": 8.006291389465332, "caste": 8.125028610229492, "sergei": 10.554753303527832, "##rer": 8.601432800292969, "##ema": 6.5384674072265625, "scripts": 7.9931464195251465, "##ively": 8.983339309692383, "rub": 6.347473621368408, "satellites": 8.334653854370117, "##vor": 6.861058712005615, "inscribed": 9.183208465576172, "verlag": 12.034191131591797, "scrapped": 10.289556503295898, "gale": 8.501408576965332, "packages": 6.732877731323242, "chick": 7.572011470794678, "potato": 6.715183734893799, "slogan": 8.35128116607666, "kathleen": 8.93324089050293, "arabs": 9.17444133758545, "##culture": 8.198740005493164, "counterparts": 8.002227783203125, "reminiscent": 8.907011985778809, "choral": 9.977627754211426, "##tead": 8.431024551391602, "rand": 8.135011672973633, "retains": 8.03276252746582, "bushes": 8.571136474609375, "dane": 8.903677940368652, "accomplish": 7.210917949676514, "courtesy": 7.123709201812744, "closes": 7.7954020500183105, "##oth": 5.9371442794799805, "slaughter": 8.586775779724121, "hague": 9.625959396362305, "krakow": 10.099224090576172, "lawson": 9.44035816192627, "tailed": 8.288166046142578, "elias": 9.506559371948242, "ginger": 7.143984794616699, "##ttes": 8.663616180419922, "canopy": 8.462112426757812, "betrayal": 9.728752136230469, "rebuilding": 8.8423433303833, "turf": 8.096406936645508, "##hof": 9.292428970336914, "frowning": 11.457042694091797, "allegiance": 8.794952392578125, "brigades": 10.590076446533203, "kicks": 7.928953170776367, "rebuild": 8.174764633178711, "polls": 8.47125244140625, "alias": 8.496411323547363, "nationalism": 8.926405906677246, "td": 7.248526096343994, "rowan": 9.426223754882812, "audition": 8.979740142822266, "bowie": 9.193164825439453, "fortunately": 7.425882339477539, "recognizes": 7.800636291503906, "harp": 8.662307739257812, "dillon": 9.317291259765625, "horrified": 10.463592529296875, "##oro": 6.707841396331787, "renault": 10.19439697265625, "##tics": 7.336918830871582, "ropes": 8.822195053100586, "##\u03b1": 7.6329450607299805, "presumed": 8.640321731567383, "rewarded": 8.925555229187012, "infrared": 7.7736592292785645, "wiping": 9.035130500793457, "accelerated": 8.027203559875488, "illustration": 7.619028568267822, "##rid": 7.276094913482666, "presses": 8.637128829956055, "practitioners": 7.255707740783691, "badminton": 10.113075256347656, "##iard": 9.055265426635742, "detained": 9.747928619384766, "##tera": 7.5976080894470215, "recognizing": 8.14978313446045, "relates": 7.403352737426758, "misery": 9.181010246276855, "##sies": 8.540573120117188, "##tly": 7.95988655090332, "reproduction": 6.92111349105835, "piercing": 7.978850841522217, "potatoes": 6.300294399261475, "thornton": 9.333788871765137, "esther": 9.29488754272461, "manners": 8.826038360595703, "hbo": 7.838636875152588, "##aan": 8.74614429473877, "ours": 8.300383567810059, "bullshit": 10.209641456604004, "ernie": 9.721183776855469, "perennial": 7.250435829162598, "sensitivity": 6.906548500061035, "illuminated": 8.80621337890625, "rupert": 9.489967346191406, "##jin": 9.50503921508789, "##iss": 7.086376667022705, "##ear": 7.075082302093506, "rfc": 9.200977325439453, "nassau": 8.506430625915527, "##dock": 8.905344009399414, "staggered": 9.46924114227295, "socialism": 8.917083740234375, "##haven": 9.172262191772461, "appointments": 7.78013277053833, "nonsense": 8.757585525512695, "prestige": 8.738353729248047, "sharma": 9.830636978149414, "haul": 7.815944194793701, "##tical": 8.400874137878418, "solidarity": 9.537449836730957, "gps": 7.591091156005859, "##ook": 8.138490676879883, "##rata": 8.887988090515137, "igor": 10.08828067779541, "pedestrian": 8.71396255493164, "##uit": 6.3310112953186035, "baxter": 9.366301536560059, "tenants": 7.961832046508789, "wires": 7.17644739151001, "medication": 5.379755973815918, "unlimited": 6.903953552246094, "guiding": 8.392851829528809, "impacts": 7.422470569610596, "diabetes": 5.606762409210205, "##rama": 8.917927742004395, "sasha": 9.395813941955566, "pas": 7.675895690917969, "clive": 9.761573791503906, "extraction": 7.361005783081055, "131": 7.646111011505127, "continually": 7.637157917022705, "constraints": 8.367216110229492, "##bilities": 7.3502092361450195, "sonata": 9.322338104248047, "hunted": 8.753279685974121, "sixteenth": 8.846264839172363, "chu": 7.305286884307861, "planting": 6.864193439483643, "quote": 6.649477005004883, "mayer": 9.113079071044922, "pretended": 10.704215049743652, "abs": 6.622587203979492, "spat": 8.295841217041016, "##hua": 8.701645851135254, "ceramic": 7.4408040046691895, "##cci": 6.248667240142822, "curtains": 8.739059448242188, "pigs": 7.700079441070557, "pitching": 8.774995803833008, "##dad": 8.875772476196289, "latvian": 10.420949935913086, "sore": 5.936587333679199, "dayton": 8.488686561584473, "##sted": 8.337957382202148, "##qi": 8.894564628601074, "patrols": 10.215805053710938, "slice": 6.832121849060059, "playground": 8.317371368408203, "##nted": 9.345372200012207, "shone": 9.682361602783203, "stool": 6.429755210876465, "apparatus": 7.775812149047852, "inadequate": 7.69484806060791, "mates": 8.668209075927734, "treason": 9.184309959411621, "##ija": 9.491464614868164, "desires": 8.201210975646973, "##liga": 8.08496379852295, "##croft": 9.715544700622559, "somalia": 9.007975578308105, "laurent": 9.394453048706055, "mir": 7.803956508636475, "leonardo": 8.568157196044922, "oracle": 7.6329450607299805, "grape": 7.020828723907471, "obliged": 9.34020709991455, "chevrolet": 7.683237075805664, "thirteenth": 9.022866249084473, "stunning": 7.367074489593506, "enthusiastic": 8.955781936645508, "##ede": 6.780920505523682, "accounted": 7.953108310699463, "concludes": 8.98604679107666, "currents": 7.704334735870361, "basil": 7.664742946624756, "##kovic": 11.404947280883789, "drought": 7.60280704498291, "##rica": 7.867746829986572, "mai": 8.207414627075195, "##aire": 9.049470901489258, "shove": 10.1853609085083, "posting": 6.921457290649414, "##shed": 8.500295639038086, "pilgrimage": 9.372932434082031, "humorous": 8.791226387023926, "packing": 7.852213382720947, "fry": 6.7429938316345215, "pencil": 7.47971248626709, "wines": 7.662815570831299, "smells": 7.735416412353516, "144": 7.432550430297852, "marilyn": 8.59224796295166, "aching": 8.332301139831543, "newest": 6.369082927703857, "clung": 11.18689250946045, "bon": 7.107419967651367, "neighbours": 9.2838716506958, "sanctioned": 9.162510871887207, "##pie": 7.88142728805542, "mug": 7.509198188781738, "##stock": 8.14978313446045, "drowning": 8.883084297180176, "##mma": 8.179594993591309, "hydraulic": 7.632711410522461, "##vil": 7.748176574707031, "hiring": 6.942780017852783, "reminder": 7.60871696472168, "lilly": 9.256258964538574, "investigators": 8.152135848999023, "##ncies": 7.13273286819458, "sour": 6.968886852264404, "##eous": 6.836851596832275, "compulsory": 8.644808769226074, "packet": 7.570035457611084, "##rion": 8.032065391540527, "##graphic": 7.55113410949707, "##elle": 7.363678932189941, "cannes": 9.920807838439941, "##inate": 6.701747894287109, "depressed": 7.908132076263428, "##rit": 5.970826148986816, "heroic": 8.711898803710938, "importantly": 7.668365955352783, "theresa": 9.484002113342285, "##tled": 9.259818077087402, "conway": 9.012604713439941, "saturn": 7.711130619049072, "marginal": 7.507960319519043, "rae": 9.07779312133789, "##xia": 7.317479133605957, "corresponds": 7.625962734222412, "royce": 9.436097145080566, "pact": 8.908683776855469, "jasper": 8.678123474121094, "explosives": 9.104903221130371, "packaging": 7.1223063468933105, "aluminium": 8.192181587219238, "##ttered": 10.091005325317383, "denotes": 8.030326843261719, "rhythmic": 8.504754066467285, "spans": 7.627587795257568, "assignments": 8.114766120910645, "hereditary": 7.614661693572998, "outlined": 7.642567157745361, "originating": 7.362786769866943, "sundays": 8.544052124023438, "lad": 8.077284812927246, "reissued": 10.326848030090332, "greeting": 7.996164321899414, "beatrice": 9.72307014465332, "##dic": 6.820860862731934, "pillar": 8.981537818908691, "marcos": 9.397175788879395, "plots": 8.510354042053223, "handbook": 7.731542110443115, "alcoholic": 7.1266608238220215, "judiciary": 8.27609634399414, "avant": 9.316032409667969, "slides": 7.33622407913208, "extract": 6.547419548034668, "masculine": 7.99180793762207, "blur": 7.98116397857666, "##eum": 8.241595268249512, "##force": 8.141204833984375, "homage": 9.182108879089355, "trembled": 12.053421974182129, "owens": 8.839217185974121, "hymn": 9.362343788146973, "trey": 9.579089164733887, "omega": 7.114904880523682, "signaling": 8.233471870422363, "socks": 8.194226264953613, "accumulated": 7.832345008850098, "reacted": 9.31981086730957, "attic": 7.6993303298950195, "theo": 7.804788112640381, "lining": 6.278177261352539, "angie": 8.97347354888916, "distraction": 8.82450008392334, "primera": 11.170698165893555, "talbot": 10.022467613220215, "##key": 7.843526363372803, "1200": 7.326034069061279, "ti": 5.723562717437744, "creativity": 7.776890754699707, "billed": 7.805342674255371, "##hey": 7.511263847351074, "deacon": 9.482515335083008, "eduardo": 10.38005256652832, "identifies": 7.2541069984436035, "proposition": 8.160809516906738, "dizzy": 8.377982139587402, "gunner": 10.60365104675293, "hogan": 9.13381576538086, "##yam": 9.229388236999512, "##pping": 7.612142086029053, "##hol": 7.242501258850098, "ja": 6.23345422744751, "##chan": 7.203593730926514, "jensen": 9.595577239990234, "reconstructed": 9.687816619873047, "##berger": 9.367624282836914, "clearance": 7.407631874084473, "darius": 9.858357429504395, "##nier": 9.034181594848633, "abe": 8.026857376098633, "harlem": 8.53537654876709, "plea": 8.258041381835938, "dei": 8.265488624572754, "circled": 10.085562705993652, "emotionally": 8.249784469604492, "notation": 7.846992015838623, "fascist": 9.362343788146973, "neville": 9.982511520385742, "exceeded": 8.105731964111328, "upwards": 7.501181602478027, "viable": 7.842085838317871, "ducks": 8.091222763061523, "##fo": 5.921330451965332, "workforce": 7.414366245269775, "racer": 9.314776420593262, "limiting": 7.463020324707031, "shri": 9.039888381958008, "##lson": 9.337635040283203, "possesses": 8.024435997009277, "1600": 7.463217735290527, "kerr": 9.026623725891113, "moths": 8.691496849060059, "devastating": 7.934621810913086, "laden": 8.578324317932129, "disturbing": 8.551047325134277, "locking": 8.214491844177246, "##cture": 7.14901065826416, "gal": 6.99655818939209, "fearing": 9.79348087310791, "accreditation": 7.752378940582275, "flavor": 5.591119766235352, "aide": 7.821005344390869, "1870s": 9.223641395568848, "mountainous": 8.240307807922363, "##baum": 9.456140518188477, "melt": 6.710623264312744, "##ures": 7.0524773597717285, "motel": 8.11287784576416, "texture": 6.328283309936523, "servers": 7.188654899597168, "soda": 6.531223297119141, "##mb": 5.796368598937988, "herd": 7.933043956756592, "##nium": 8.240736961364746, "erect": 7.489984512329102, "puzzled": 9.970346450805664, "hum": 6.958957195281982, "peggy": 9.321073532104492, "examinations": 8.156463623046875, "gould": 9.401274681091309, "testified": 10.002289772033691, "geoff": 9.69697380065918, "ren": 7.086106300354004, "devised": 8.610082626342773, "sacks": 9.6933012008667, "##law": 7.906902313232422, "denial": 8.156068801879883, "posters": 8.603897094726562, "grunted": 12.974578857421875, "cesar": 9.34020709991455, "tutor": 6.4758195877075195, "ec": 5.652761459350586, "gerry": 9.529637336730957, "offerings": 7.900777816772461, "byrne": 9.75765609741211, "falcons": 9.156063079833984, "combinations": 7.23745584487915, "ct": 5.953603744506836, "incoming": 7.476311683654785, "pardon": 8.811511993408203, "rocking": 8.819131851196289, "26th": 8.205756187438965, "avengers": 8.855740547180176, "flared": 10.040462493896484, "mankind": 8.363814353942871, "seller": 6.650263786315918, "uttar": 9.355781555175781, "loch": 9.187621116638184, "nadia": 10.550423622131348, "stroking": 10.67443561553955, "exposing": 8.530780792236328, "##hd": 7.288761615753174, "fertile": 7.406700134277344, "ancestral": 8.666237831115723, "instituted": 8.935815811157227, "##has": 7.485339164733887, "noises": 8.42224407196045, "prophecy": 9.184309959411621, "taxation": 7.692366123199463, "eminent": 9.093770027160645, "vivid": 8.143148422241211, "pol": 7.248208045959473, "##bol": 6.580050468444824, "dart": 8.410993576049805, "indirect": 7.1241302490234375, "multimedia": 8.284126281738281, "notebook": 7.950538158416748, "upside": 7.979841709136963, "displaying": 7.712141513824463, "adrenaline": 8.444079399108887, "referenced": 8.012758255004883, "geometric": 7.949255466461182, "##iving": 8.000877380371094, "progression": 7.548125743865967, "##ddy": 8.968132972717285, "blunt": 8.079837799072266, "announce": 7.544270992279053, "##far": 7.1135149002075195, "implementing": 7.700079441070557, "##lav": 8.149392127990723, "aggression": 8.249784469604492, "liaison": 8.955781936645508, "cooler": 6.895650863647461, "cares": 8.463719367980957, "headache": 5.821317195892334, "plantations": 8.935815811157227, "gorge": 8.400370597839355, "dots": 7.882925987243652, "impulse": 7.004126071929932, "thickness": 6.5430908203125, "ashamed": 9.805713653564453, "averaging": 7.569158554077148, "kathy": 8.909521102905273, "obligation": 7.30495023727417, "precursor": 7.763228416442871, "137": 7.747914791107178, "fowler": 9.193164825439453, "symmetry": 8.219938278198242, "thee": 8.672823905944824, "225": 7.100676536560059, "hears": 8.584354400634766, "##rai": 6.7893242835998535, "undergoing": 7.898643493652344, "ads": 7.033445358276367, "butcher": 8.197096824645996, "bowler": 9.69697380065918, "##lip": 7.090169906616211, "cigarettes": 7.702079772949219, "subscription": 6.847017765045166, "goodness": 8.502522468566895, "##ically": 7.689890384674072, "browne": 7.678581237792969, "##hos": 6.808597564697266, "##tech": 7.6876678466796875, "kyoto": 9.488472938537598, "donor": 7.413240909576416, "##erty": 7.487961769104004, "damaging": 7.418127536773682, "friction": 7.266820430755615, "drifting": 9.528081893920898, "expeditions": 9.548490524291992, "hardened": 8.367216110229492, "prostitution": 9.671541213989258, "152": 7.399831295013428, "fauna": 8.834546089172363, "blankets": 8.757585525512695, "claw": 8.546960830688477, "tossing": 9.244487762451172, "snarled": 12.756325721740723, "butterflies": 8.265928268432617, "recruits": 8.794952392578125, "investigative": 8.93324089050293, "coated": 7.184469699859619, "healed": 8.386381149291992, "138": 7.797602653503418, "communal": 9.299822807312012, "hai": 7.97720193862915, "xiii": 9.745994567871094, "academics": 8.692170143127441, "boone": 8.727128982543945, "psychologist": 7.624108791351318, "restless": 7.809235572814941, "lahore": 10.14423942565918, "stephens": 9.488472938537598, "mba": 7.7885565757751465, "brendan": 9.467777252197266, "foreigners": 8.930671691894531, "printer": 6.772092819213867, "##pc": 7.333970069885254, "ached": 12.39769172668457, "explode": 8.846264839172363, "27th": 8.350802421569824, "deed": 7.267630577087402, "scratched": 9.0303955078125, "dared": 9.459036827087402, "##pole": 8.52734661102295, "cardiac": 6.5333991050720215, "1780": 9.198739051818848, "okinawa": 9.346667289733887, "proto": 7.185215473175049, "commando": 10.546113967895508, "compelled": 9.29735279083252, "oddly": 9.255075454711914, "electrons": 6.425695896148682, "##base": 6.983785152435303, "replica": 8.095664978027344, "thanksgiving": 7.955040454864502, "##rist": 8.190547943115234, "sheila": 9.69881534576416, "deliberate": 8.50979232788086, "stafford": 8.988761901855469, "tidal": 8.091222763061523, "representations": 8.713274002075195, "hercules": 9.253893852233887, "ou": 5.699119567871094, "##path": 7.781486511230469, "##iated": 8.982438087463379, "kidnapping": 9.245657920837402, "lenses": 7.289755344390869, "##tling": 8.504754066467285, "deficit": 7.282654762268066, "samoa": 8.712586402893066, "mouths": 8.639042854309082, "consuming": 6.914373397827148, "computational": 9.30478286743164, "maze": 8.882268905639648, "granting": 8.379951477050781, "smirk": 11.355432510375977, "razor": 8.18851089477539, "fixture": 8.100499153137207, "ideals": 8.64288330078125, "inviting": 8.610082626342773, "aiden": 10.432400703430176, "nominal": 7.700829029083252, "##vs": 7.7083563804626465, "issuing": 7.847570896148682, "julio": 10.218900680541992, "pitt": 7.9595627784729, "ramsey": 9.36497974395752, "docks": 9.114106178283691, "##oss": 7.191053867340088, "exhaust": 7.162051200866699, "##owed": 9.157135009765625, "bavarian": 9.671541213989258, "draped": 9.813952445983887, "anterior": 6.624800205230713, "mating": 8.02997875213623, "ethiopian": 9.262197494506836, "explores": 7.925504684448242, "noticing": 8.986950874328613, "##nton": 9.335068702697754, "discarded": 8.47341537475586, "convenience": 6.786415100097656, "hoffman": 9.057204246520996, "endowment": 9.152853965759277, "beasts": 9.082758903503418, "cartridge": 8.0831298828125, "mormon": 9.056234359741211, "paternal": 8.626348495483398, "probe": 7.676139831542969, "sleeves": 8.575922966003418, "interfere": 7.099579811096191, "lump": 6.767364025115967, "deadline": 7.015020370483398, "##rail": 8.380444526672363, "jenks": 11.87596607208252, "bulldogs": 9.36497974395752, "scrap": 7.593782901763916, "alternating": 7.817909240722656, "justified": 8.679452896118164, "reproductive": 6.823144435882568, "nam": 8.10311222076416, "seize": 8.65904426574707, "descending": 8.11287784576416, "secretariat": 9.542166709899902, "kirby": 9.359713554382324, "coupe": 8.511478424072266, "grouped": 7.634581565856934, "smash": 8.393851280212402, "panther": 8.19750690460205, "sedan": 7.888941764831543, "tapping": 8.257169723510742, "##18": 7.227752685546875, "lola": 9.953558921813965, "cheer": 8.128473281860352, "germanic": 7.6993303298950195, "unfortunate": 8.577723503112793, "##eter": 6.896880626678467, "unrelated": 7.866566181182861, "##fan": 8.099381446838379, "subordinate": 8.183637619018555, "##sdale": 8.461042404174805, "suzanne": 9.289977073669434, "advertisement": 6.928014278411865, "##ility": 7.453410625457764, "horsepower": 7.732058048248291, "##lda": 8.537105560302734, "cautiously": 9.955940246582031, "discourse": 8.603897094726562, "luigi": 10.009808540344238, "##mans": 8.996037483215332, "##fields": 9.291202545166016, "noun": 5.254885673522949, "prevalent": 7.423038482666016, "mao": 8.541731834411621, "schneider": 9.143289566040039, "everett": 8.92385482788086, "surround": 7.671274185180664, "governorate": 10.87402057647705, "kira": 10.110289573669434, "##avia": 9.785408020019531, "westward": 8.836878776550293, "##take": 7.608944892883301, "misty": 9.50503921508789, "rails": 8.367216110229492, "sustainability": 8.457306861877441, "134": 7.608033180236816, "unused": 8.035552978515625, "##rating": 8.19997501373291, "packs": 7.36725378036499, "toast": 7.273320198059082, "unwilling": 9.02099323272705, "regulate": 6.733827590942383, "thy": 6.575091361999512, "suffrage": 8.561041831970215, "nile": 7.790741920471191, "awe": 8.579527854919434, "assam": 9.867043495178223, "definitions": 5.930312156677246, "travelers": 7.153338432312012, "affordable": 6.309765815734863, "##rb": 6.678098678588867, "conferred": 9.322338104248047, "sells": 6.997300148010254, "undefeated": 9.967930793762207, "beneficial": 6.623948574066162, "torso": 8.281442642211914, "basal": 7.4889726638793945, "repeating": 8.03590202331543, "remixes": 10.804828643798828, "##pass": 7.534063816070557, "bahrain": 9.335068702697754, "cables": 7.387330055236816, "fang": 9.558052062988281, "##itated": 8.753995895385742, "excavated": 9.579089164733887, "numbering": 8.322478294372559, "statutory": 7.596481800079346, "##rey": 8.883084297180176, "deluxe": 8.353679656982422, "##lian": 7.138413906097412, "forested": 9.095785140991211, "ramirez": 9.685995101928711, "derbyshire": 10.21271800994873, "zeus": 8.357528686523438, "slamming": 10.640778541564941, "transfers": 6.875518321990967, "astronomer": 8.815315246582031, "banana": 7.380956172943115, "lottery": 7.721794605255127, "berg": 8.55868148803711, "histories": 8.288166046142578, "bamboo": 7.994822025299072, "##uchi": 9.053330421447754, "resurrection": 8.912875175476074, "posterior": 6.792342662811279, "bowls": 8.144705772399902, "vaguely": 9.828536033630371, "##thi": 7.204202175140381, "thou": 8.86450481414795, "preserving": 8.197917938232422, "tensed": 11.943219184875488, "offence": 8.774995803833008, "##inas": 8.95228099822998, "meyrick": 14.490926742553711, "callum": 11.47866439819336, "ridden": 9.332509994506836, "watt": 7.304781913757324, "langdon": 10.948357582092285, "tying": 8.564593315124512, "lowland": 9.039888381958008, "snorted": 10.463592529296875, "daring": 9.097804069519043, "truman": 8.13424015045166, "##hale": 7.33622407913208, "##girl": 8.36770248413086, "aura": 8.191364288330078, "overly": 7.816505432128906, "filing": 5.933594226837158, "weighing": 7.191354274749756, "goa": 9.357090950012207, "infections": 5.3494954109191895, "philanthropist": 8.989667892456055, "saunders": 9.69697380065918, "eponymous": 9.062067985534668, "##owski": 9.948814392089844, "latitude": 6.624800205230713, "perspectives": 8.281888961791992, "reviewing": 8.029284477233887, "mets": 9.023804664611816, "commandant": 10.170479774475098, "radial": 7.941911697387695, "##kha": 8.868515014648438, "flashlight": 9.07482624053955, "reliability": 7.540005207061768, "koch": 9.314776420593262, "vowels": 8.84312629699707, "amazed": 8.876582145690918, "ada": 7.341619968414307, "elaine": 9.31981086730957, "supper": 9.092763900756836, "##rth": 7.020702362060547, "##encies": 8.637128829956055, "predator": 8.179998397827148, "debated": 8.455710411071777, "soviets": 9.524978637695312, "cola": 7.3383097648620605, "##boards": 8.102738380432129, "##nah": 9.169000625610352, "compartment": 7.798153400421143, "crooked": 8.917927742004395, "arbitrary": 8.390357971191406, "fourteenth": 8.502522468566895, "##ctive": 7.0988945960998535, "havana": 9.084752082824707, "majors": 7.8545427322387695, "steelers": 9.091758728027344, "clips": 7.899862766265869, "profitable": 7.983482837677002, "ambush": 9.801619529724121, "exited": 10.15001106262207, "packers": 8.88553237915039, "##tile": 7.612828731536865, "nude": 9.028508186340332, "cracks": 7.543202877044678, "fungi": 6.600801467895508, "##\u0435": 8.99695110321045, "limb": 7.179410934448242, "trousers": 8.972580909729004, "josie": 10.344270706176758, "shelby": 8.611946105957031, "tens": 7.351618766784668, "frederic": 9.368948936462402, "##\u03bf\u03c2": 7.975226402282715, "definite": 7.606212139129639, "smoothly": 7.90444803237915, "constellation": 7.932098388671875, "insult": 8.733428001403809, "baton": 8.510915756225586, "discs": 7.5517802238464355, "lingering": 9.124431610107422, "##nco": 8.590420722961426, "conclusions": 8.071836471557617, "lent": 7.349329471588135, "staging": 8.78825569152832, "becker": 9.170086860656738, "grandpa": 8.862905502319336, "shaky": 9.543744087219238, "##tron": 7.755278587341309, "einstein": 8.219098091125488, "obstacles": 8.350323677062988, "sk": 6.718173503875732, "adverse": 6.851070404052734, "elle": 9.008899688720703, "economically": 8.347933769226074, "##moto": 8.957536697387695, "mccartney": 8.93324089050293, "thor": 6.7363972663879395, "dismissal": 8.94879150390625, "motions": 8.143148422241211, "readings": 7.803956508636475, "nostrils": 8.785293579101562, "treatise": 9.20322036743164, "##pace": 7.710625648498535, "squeezing": 8.661001205444336, "evidently": 9.61234188079834, "prolonged": 7.081251621246338, "1783": 8.92385482788086, "venezuelan": 9.61912727355957, "je": 6.595904350280762, "marguerite": 10.215805053710938, "beirut": 10.10197925567627, "takeover": 9.157135009765625, "shareholders": 7.580840587615967, "##vent": 7.068419933319092, "denise": 9.259818077087402, "digit": 6.36381721496582, "airplay": 9.691469192504883, "norse": 8.061744689941406, "##bbling": 9.317291259765625, "imaginary": 8.319689750671387, "pills": 6.940791130065918, "hubert": 9.73637866973877, "blaze": 8.499739646911621, "vacated": 10.004790306091309, "eliminating": 7.750275611877441, "##ello": 8.734129905700684, "vine": 7.65156888961792, "mansfield": 9.344078063964844, "##tty": 9.072853088378906, "retrospective": 9.111028671264648, "barrow": 9.19762134552002, "borne": 7.6082611083984375, "clutch": 7.927384376525879, "bail": 7.689148902893066, "forensic": 7.6303791999816895, "weaving": 8.796445846557617, "##nett": 8.422758102416992, "##witz": 9.58072566986084, "desktop": 6.323290824890137, "citadel": 9.488472938537598, "promotions": 8.048209190368652, "worrying": 8.698251724243164, "dorset": 9.779396057128906, "ieee": 8.934956550598145, "subdivided": 8.531353950500488, "##iating": 7.98846960067749, "manned": 9.25035572052002, "expeditionary": 9.634565353393555, "pickup": 7.3760666847229, "synod": 10.14712142944336, "chuckle": 10.89819049835205, "185": 7.803125381469727, "barney": 9.209980964660645, "##rz": 8.830670356750488, "##ffin": 7.482320785522461, "functionality": 7.25426721572876, "karachi": 9.994827270507812, "litigation": 8.159226417541504, "meanings": 6.108433723449707, "uc": 6.874205112457275, "lick": 7.613744735717773, "turbo": 7.487760066986084, "anders": 10.06674575805664, "##ffed": 9.687816619873047, "execute": 7.469544887542725, "curl": 8.099381446838379, "oppose": 8.792715072631836, "ankles": 7.799808025360107, "typhoon": 9.183208465576172, "##\u062f": 9.395813941955566, "##ache": 6.623353004455566, "##asia": 7.456930160522461, "linguistics": 8.426366806030273, "compassion": 8.519381523132324, "pressures": 7.770170211791992, "grazing": 8.62508773803711, "perfection": 8.22752857208252, "##iting": 8.3943510055542, "immunity": 7.510850429534912, "monopoly": 8.638404846191406, "muddy": 8.976154327392578, "backgrounds": 8.304946899414062, "136": 7.683237075805664, "namibia": 8.920463562011719, "francesca": 10.417162895202637, "monitors": 7.656339168548584, "attracting": 8.546379089355469, "stunt": 8.525064468383789, "tuition": 6.319892406463623, "##\u0438\u0438": 10.309724807739258, "vegetable": 6.27757453918457, "##mates": 8.656440734863281, "##quent": 7.302094459533691, "mgm": 8.539994239807129, "jen": 7.882925987243652, "complexes": 8.441454887390137, "forts": 9.805713653564453, "##ond": 6.57064151763916, "cellar": 9.10185432434082, "bites": 7.24598503112793, "seventeenth": 8.983339309692383, "royals": 9.135913848876953, "flemish": 9.478071212768555, "failures": 8.386381149291992, "mast": 7.1276469230651855, "charities": 8.612567901611328, "##cular": 6.623267650604248, "peruvian": 9.056234359741211, "capitals": 9.023804664611816, "macmillan": 8.326676368713379, "ipswich": 10.237680435180664, "outward": 7.590419292449951, "frigate": 10.34779167175293, "postgraduate": 9.16683292388916, "folds": 7.814542770385742, "employing": 8.479387283325195, "##ouse": 8.525634765625, "concurrently": 9.25035572052002, "fiery": 8.785293579101562, "##tai": 9.013533592224121, "contingent": 8.534801483154297, "nightmares": 9.211112022399902, "monumental": 9.115134239196777, "nicaragua": 8.8384370803833, "##kowski": 9.719300270080566, "lizard": 8.368189811706543, "mal": 6.038520812988281, "fielding": 9.72307014465332, "gig": 7.273156642913818, "reject": 8.198740005493164, "##pad": 7.438109397888184, "harding": 9.148591995239258, "##ipe": 7.024253845214844, "coastline": 7.6874213218688965, "##cin": 6.937406539916992, "##nos": 7.316287040710449, "beethoven": 9.287530899047852, "humphrey": 9.23516845703125, "innovations": 8.319689750671387, "##tam": 6.011112213134766, "##nge": 7.023237705230713, "norris": 9.122357368469238, "doris": 9.461941719055176, "solicitor": 9.011677742004395, "huang": 9.216788291931152, "obey": 8.571136474609375, "141": 7.7195000648498535, "##lc": 6.9437174797058105, "niagara": 8.408961296081543, "##tton": 8.743304252624512, "shelves": 8.0237455368042, "aug": 6.190756797790527, "bourbon": 8.55868148803711, "curry": 7.693357944488525, "nightclub": 8.691496849060059, "specifications": 7.076688289642334, "hilton": 7.933990478515625, "##ndo": 8.435705184936523, "centennial": 8.86530590057373, "dispersed": 8.666237831115723, "worm": 7.517903804779053, "neglected": 8.761909484863281, "briggs": 9.23516845703125, "sm": 6.158163547515869, "font": 7.085700988769531, "kuala": 9.62767505645752, "uneasy": 9.932381629943848, "plc": 8.357528686523438, "##nstein": 9.389029502868652, "##bound": 8.121976852416992, "##aking": 8.071836471557617, "##burgh": 9.44178295135498, "awaiting": 8.666894912719727, "pronunciation": 6.199853420257568, "##bbed": 9.506559371948242, "##quest": 7.712141513824463, "eh": 7.328787326812744, "optimal": 6.888525009155273, "zhu": 9.69881534576416, "raped": 9.667960166931152, "greens": 7.067623138427734, "presided": 9.598907470703125, "brenda": 9.3479642868042, "worries": 8.556914329528809, "##life": 7.473320484161377, "venetian": 9.29488754272461, "marxist": 9.643245697021484, "turnout": 9.695136070251465, "##lius": 9.558052062988281, "refined": 7.369943141937256, "braced": 10.659872055053711, "sins": 8.825268745422363, "grasped": 10.487641334533691, "sunderland": 10.724571228027344, "nickel": 7.461248397827148, "speculated": 9.502006530761719, "lowell": 9.183208465576172, "cyrillic": 10.215805053710938, "communism": 8.420188903808594, "fundraising": 8.772802352905273, "resembling": 7.796501636505127, "colonists": 8.047502517700195, "mutant": 8.874963760375977, "freddie": 8.673484802246094, "usc": 7.526055812835693, "##mos": 7.015146255493164, "gratitude": 9.12755012512207, "##run": 7.622951984405518, "mural": 9.554855346679688, "##lous": 8.406427383422852, "chemist": 7.842373847961426, "wi": 5.069920063018799, "reminds": 8.691496849060059, "28th": 8.117795944213867, "steals": 9.245657920837402, "tess": 9.362343788146973, "pietro": 10.52905559539795, "##ingen": 9.832742691040039, "promoter": 8.502522468566895, "ri": 5.489182949066162, "microphone": 8.100126266479492, "honoured": 10.309724807739258, "rai": 7.664019584655762, "sant": 8.914556503295898, "##qui": 5.857333660125732, "feather": 7.913992881774902, "##nson": 9.098814964294434, "burlington": 8.595911979675293, "kurdish": 9.849745750427246, "terrorists": 9.349263191223145, "deborah": 8.978842735290527, "sickness": 7.5116777420043945, "##wed": 7.5828375816345215, "##eet": 7.762696743011475, "hazard": 7.43734073638916, "irritated": 7.929267406463623, "desperation": 10.2313814163208, "veil": 8.792715072631836, "clarity": 7.830066680908203, "##rik": 9.316032409667969, "jewels": 9.225935935974121, "xv": 9.537449836730957, "##gged": 9.534317016601562, "##ows": 7.231810569763184, "##cup": 8.204928398132324, "berkshire": 8.95053482055664, "unfair": 8.115901947021484, "mysteries": 8.507550239562988, "orchid": 8.335124969482422, "winced": 12.425471305847168, "exhaustion": 8.55809211730957, "renovations": 9.124431610107422, "stranded": 7.9355692863464355, "obe": 7.286942481994629, "infinity": 8.250650405883789, "##nies": 8.139265060424805, "adapt": 6.472813129425049, "redevelopment": 9.841207504272461, "thanked": 9.955940246582031, "registry": 7.126801490783691, "olga": 10.34779167175293, "domingo": 9.579089164733887, "noir": 8.958415985107422, "tudor": 9.244487762451172, "ole": 7.503025531768799, "##atus": 9.643245697021484, "commenting": 9.569324493408203, "behaviors": 7.098620891571045, "##ais": 8.745433807373047, "crisp": 6.802063941955566, "pauline": 10.082853317260742, "probable": 8.15843677520752, "stirling": 10.132794380187988, "wigan": 11.394845962524414, "##bian": 8.36770248413086, "paralympics": 12.053421974182129, "panting": 10.014852523803711, "surpassed": 8.59163761138916, "##rew": 7.950538158416748, "luca": 9.771435737609863, "barred": 8.907011985778809, "pony": 8.339376449584961, "famed": 8.219517707824707, "##sters": 8.294482231140137, "cassandra": 9.83908462524414, "waiter": 9.186516761779785, "carolyn": 9.460488319396973, "exported": 8.407440185546875, "##orted": 8.345072746276855, "andres": 9.818097114562988, "destructive": 7.815383434295654, "deeds": 8.1076078414917, "jonah": 9.783400535583496, "castles": 9.087748527526855, "vacancy": 9.079776763916016, "suv": 7.375705242156982, "##glass": 7.2631025314331055, "1788": 8.874963760375977, "orchard": 8.82680892944336, "yep": 9.142232894897461, "famine": 8.993303298950195, "belarusian": 10.804828643798828, "sprang": 9.932381629943848, "##forth": 9.695136070251465, "skinny": 8.292673110961914, "##mis": 6.810237407684326, "administrators": 7.714926242828369, "rotterdam": 10.06674575805664, "zambia": 9.0181884765625, "zhao": 10.72972583770752, "boiler": 7.969978332519531, "discoveries": 8.4028902053833, "##ride": 7.591315269470215, "##physics": 8.968132972717285, "lucius": 9.944091796875, "disappointing": 9.301060676574707, "outreach": 8.62761116027832, "spoon": 7.0639142990112305, "##frame": 8.004935264587402, "qualifications": 7.349329471588135, "unanimously": 9.27297592163086, "enjoys": 7.875753879547119, "regency": 9.614034652709961, "##iidae": 10.554753303527832, "stade": 11.100902557373047, "realism": 8.90201473236084, "veterinary": 7.289424419403076, "rodgers": 9.171174049377441, "dump": 7.573110580444336, "alain": 10.333781242370605, "chestnut": 8.453055381774902, "castile": 9.572568893432617, "censorship": 9.920807838439941, "rumble": 9.588949203491211, "gibbs": 9.219067573547363, "##itor": 7.659212589263916, "communion": 9.622537612915039, "reggae": 9.205469131469727, "inactivated": 9.19205379486084, "logs": 7.960534572601318, "loads": 7.272342205047607, "##houses": 8.724343299865723, "homosexual": 9.067935943603516, "##iano": 8.915398597717285, "ale": 7.064046859741211, "informs": 9.027565002441406, "##cas": 7.619028568267822, "phrases": 7.03652811050415, "plaster": 8.097892761230469, "linebacker": 9.539019584655762, "ambrose": 9.843335151672363, "kaiser": 8.716719627380371, "fascinated": 9.190943717956543, "850": 7.279369831085205, "limerick": 9.960719108581543, "recruitment": 8.008668899536133, "forge": 8.177579879760742, "mastered": 9.175533294677734, "##nding": 8.08203125, "leinster": 10.816033363342285, "rooted": 8.102364540100098, "threaten": 8.718101501464844, "##strom": 8.845479011535645, "borneo": 9.333788871765137, "##hes": 7.128633499145508, "suggestions": 7.1831278800964355, "scholarships": 7.937784671783447, "propeller": 9.167916297912598, "documentaries": 9.660836219787598, "patronage": 9.702508926391602, "coats": 7.633879661560059, "constructing": 8.532501220703125, "invest": 7.122726917266846, "neurons": 6.865168571472168, "comet": 8.78381633758545, "entirety": 8.59897518157959, "shouts": 10.436246871948242, "identities": 8.846264839172363, "annoying": 7.738526344299316, "unchanged": 8.081665992736816, "wary": 9.034181594848633, "##antly": 9.523430824279785, "##ogy": 7.9305243492126465, "neat": 8.142370223999023, "oversight": 8.243743896484375, "##kos": 8.905344009399414, "phillies": 9.652002334594727, "replay": 9.20322036743164, "constance": 9.984962463378906, "##kka": 8.82450008392334, "incarnation": 8.908683776855469, "humble": 8.108734130859375, "skies": 8.072198867797852, "minus": 7.092344284057617, "##acy": 8.07546615600586, "smithsonian": 8.836100578308105, "##chel": 8.75113296508789, "guerrilla": 9.676937103271484, "jar": 6.874314785003662, "cadets": 9.662612915039062, "##plate": 7.917401313781738, "surplus": 8.090853691101074, "audit": 6.938455581665039, "##aru": 8.152528762817383, "cracking": 8.073287010192871, "joanna": 9.199857711791992, "louisa": 9.873607635498047, "pacing": 9.466315269470215, "##lights": 9.051399230957031, "intentionally": 8.161602020263672, "##iri": 7.727426528930664, "diner": 8.584959030151367, "nwa": 10.612804412841797, "imprint": 8.47341537475586, "australians": 8.956659317016602, "tong": 8.357528686523438, "unprecedented": 8.4171142578125, "bunker": 8.889628410339355, "naive": 9.048508644104004, "specialists": 7.021082401275635, "ark": 7.7951273918151855, "nichols": 9.485489845275879, "railing": 8.839998245239258, "leaked": 8.91203498840332, "pedal": 7.832345008850098, "##uka": 8.716719627380371, "shrub": 7.603487014770508, "longing": 9.822259902954102, "roofs": 8.219517707824707, "v8": 8.480476379394531, "captains": 9.302299499511719, "neural": 7.436764717102051, "tuned": 8.280102729797363, "##ntal": 8.131159782409668, "##jet": 7.84151029586792, "emission": 7.805342674255371, "medina": 9.143289566040039, "frantic": 10.4058837890625, "codex": 10.39104175567627, "definitive": 7.650142192840576, "sid": 8.086432456970215, "abolition": 9.1411771774292, "intensified": 9.732558250427246, "stocks": 7.05903434753418, "enrique": 9.864864349365234, "sustain": 7.5231218338012695, "genoa": 9.526529312133789, "oxide": 6.888636112213135, "##written": 8.314135551452637, "clues": 7.7613677978515625, "cha": 5.954780578613281, "##gers": 8.234323501586914, "tributaries": 8.858122825622559, "fragment": 8.41916275024414, "venom": 7.676139831542969, "##rity": 8.025818824768066, "##ente": 9.268171310424805, "##sca": 7.162197113037109, "muffled": 10.533292770385742, "vain": 9.231696128845215, "sire": 9.607282638549805, "laos": 8.851780891418457, "##ingly": 9.021928787231445, "##hana": 9.214513778686523, "hastily": 10.471545219421387, "snapping": 9.008899688720703, "surfaced": 9.178815841674805, "sentiment": 8.962821006774902, "motive": 8.958415985107422, "##oft": 8.059952735900879, "contests": 8.837657928466797, "approximate": 7.028839111328125, "mesa": 8.16358470916748, "luckily": 8.101991653442383, "dinosaur": 8.291769981384277, "exchanges": 7.97852087020874, "propelled": 8.776460647583008, "accord": 8.148218154907227, "bourne": 10.025017738342285, "relieve": 6.2654829025268555, "tow": 7.818190574645996, "masks": 8.47612476348877, "offended": 9.904826164245605, "##ues": 8.236029624938965, "cynthia": 9.015393257141113, "##mmer": 8.225414276123047, "rains": 7.986472129821777, "bartender": 8.80621337890625, "zinc": 6.888413906097412, "reviewers": 9.327410697937012, "lois": 9.261007308959961, "##sai": 8.737648963928223, "legged": 8.727827072143555, "arrogant": 9.564477920532227, "rafe": 11.086031913757324, "rosie": 9.322338104248047, "comprise": 7.581727981567383, "handicap": 8.672163009643555, "blockade": 9.231696128845215, "inlet": 8.09492301940918, "lagoon": 8.513166427612305, "copied": 7.738526344299316, "drilling": 7.833200454711914, "shelley": 9.086749076843262, "petals": 8.390357971191406, "##inian": 9.165750503540039, "mandarin": 8.40137767791748, "obsolete": 8.131929397583008, "##inated": 7.550273895263672, "onward": 9.057204246520996, "arguably": 7.849889278411865, "productivity": 7.236355781555176, "cindy": 9.083754539489746, "praising": 10.286233901977539, "seldom": 8.038702011108398, "busch": 8.934098243713379, "discusses": 7.529630184173584, "raleigh": 8.21574592590332, "shortage": 8.051753997802734, "ranged": 7.793755054473877, "stanton": 9.117192268371582, "encouragement": 9.105921745300293, "firstly": 8.275651931762695, "conceded": 10.49578857421875, "overs": 7.525426387786865, "temporal": 7.677115440368652, "##uke": 8.514857292175293, "cbe": 9.944091796875, "##bos": 7.2107648849487305, "woo": 8.340323448181152, "certainty": 8.743304252624512, "pumps": 7.168783187866211, "##pton": 8.587383270263672, "stalked": 10.4058837890625, "##uli": 6.591031074523926, "lizzie": 10.080150604248047, "periodic": 6.835483074188232, "thieves": 8.880640983581543, "weaker": 8.047148704528809, "##night": 8.590420722961426, "gases": 6.541913032531738, "shoving": 10.929248809814453, "chooses": 8.173962593078613, "wc": 8.253686904907227, "##chemical": 7.292078018188477, "prompting": 9.236329078674316, "weights": 7.148435115814209, "##kill": 7.757656574249268, "robust": 7.62712287902832, "flanked": 9.854042053222656, "sticky": 7.411367416381836, "hu": 6.204153060913086, "tuberculosis": 7.689148902893066, "##eb": 6.711738109588623, "##eal": 7.194664001464844, "christchurch": 10.299589157104492, "resembled": 9.75570297241211, "wallet": 7.97720193862915, "reese": 9.177720069885254, "inappropriate": 7.823828220367432, "pictured": 7.598510265350342, "distract": 9.47364616394043, "fixing": 7.985806941986084, "fiddle": 8.943581581115723, "giggled": 12.370662689208984, "burger": 7.3329315185546875, "heirs": 8.875772476196289, "hairy": 8.610082626342773, "mechanic": 7.727169990539551, "torque": 7.488568305969238, "apache": 8.415069580078125, "obsessed": 8.792715072631836, "chiefly": 7.674921035766602, "cheng": 9.662612915039062, "logging": 7.609857559204102, "##tag": 6.671825885772705, "extracted": 7.305455207824707, "meaningful": 7.489174842834473, "numb": 6.566612720489502, "##vsky": 10.929248809814453, "gloucestershire": 10.234525680541992, "reminding": 9.639764785766602, "##bay": 6.791234970092773, "unite": 8.115523338317871, "##lit": 6.731170177459717, "breeds": 6.885644435882568, "diminished": 8.395352363586426, "clown": 8.56994342803955, "glove": 8.430505752563477, "1860s": 9.37826919555664, "##\u0646": 9.251533508300781, "##ug": 6.955036640167236, "archibald": 10.35487174987793, "focal": 7.741385459899902, "freelance": 8.566967964172363, "sliced": 7.457126140594482, "depiction": 9.040842056274414, "##yk": 8.436225891113281, "organism": 6.204488754272461, "switches": 7.724094867706299, "sights": 7.791289329528809, "stray": 8.541731834411621, "crawling": 8.747567176818848, "##ril": 6.883986473083496, "lever": 7.636689186096191, "leningrad": 11.14688777923584, "interpretations": 8.583145141601562, "loops": 8.284574508666992, "anytime": 7.198589324951172, "reel": 8.316446304321289, "alicia": 9.102869987487793, "delighted": 8.986950874328613, "##ech": 7.759775638580322, "inhaled": 7.952786445617676, "xiv": 9.29735279083252, "suitcase": 9.408143043518066, "bernie": 8.71948528289795, "vega": 7.508372783660889, "licenses": 7.017541885375977, "northampton": 9.74213695526123, "exclusion": 7.60871696472168, "induction": 7.9286394119262695, "monasteries": 10.302956581115723, "racecourse": 10.537548065185547, "homosexuality": 9.734466552734375, "##right": 8.366243362426758, "##sfield": 8.678123474121094, "##rky": 8.668209075927734, "dimitri": 10.581128120422363, "michele": 9.362343788146973, "alternatives": 7.389524936676025, "ions": 6.657017707824707, "commentators": 9.700660705566406, "genuinely": 9.268171310424805, "objected": 10.15001106262207, "pork": 6.230634689331055, "hospitality": 8.131159782409668, "fencing": 8.46747875213623, "stephan": 9.958327293395996, "warships": 9.807766914367676, "peripheral": 6.557408332824707, "wit": 7.925191879272461, "drunken": 9.275386810302734, "wrinkled": 9.37826919555664, "quentin": 9.73637866973877, "spends": 7.6611328125, "departing": 8.90284538269043, "chung": 10.129953384399414, "numerical": 7.361005783081055, "spokesperson": 8.839217185974121, "##zone": 7.69187068939209, "johannesburg": 9.080769538879395, "caliber": 8.72922420501709, "killers": 8.666237831115723, "##udge": 8.343646049499512, "assumes": 7.550919055938721, "neatly": 9.220208168029785, "demographic": 7.468949794769287, "abigail": 9.189835548400879, "bloc": 9.355781555175781, "##vel": 7.354089736938477, "mounting": 7.741125106811523, "##lain": 8.549294471740723, "bentley": 9.240982055664062, "slightest": 9.550077438354492, "xu": 9.346667289733887, "recipients": 7.747914791107178, "##jk": 9.423420906066895, "merlin": 9.66974925994873, "##writer": 7.978190898895264, "seniors": 7.733348369598389, "prisons": 8.458906173706055, "blinking": 9.052364349365234, "hindwings": 12.513763427734375, "flickered": 12.717859268188477, "kappa": 9.236329078674316, "##hel": 7.168489456176758, "80s": 7.916470527648926, "strengthening": 8.160017967224121, "appealing": 7.968017101287842, "brewing": 7.925504684448242, "gypsy": 9.807766914367676, "mali": 6.831387996673584, "lashes": 9.342785835266113, "hulk": 8.938397407531738, "unpleasant": 7.393745422363281, "harassment": 8.278765678405762, "bio": 5.2153496742248535, "treaties": 8.50085163116455, "predict": 6.736588001251221, "instrumentation": 9.027565002441406, "pulp": 7.5617356300354, "troupe": 9.898054122924805, "boiling": 6.566050052642822, "mantle": 7.445246696472168, "##ffe": 7.942229747772217, "ins": 4.982021808624268, "##vn": 8.44093132019043, "dividing": 7.081117153167725, "handles": 7.417374134063721, "verbs": 7.8850274085998535, "##onal": 7.006994724273682, "coconut": 6.754085540771484, "senegal": 9.292428970336914, "340": 7.6254987716674805, "thorough": 7.493838310241699, "gum": 6.266256332397461, "momentarily": 10.10197925567627, "##sto": 6.483115196228027, "cocaine": 7.844968795776367, "panicked": 10.788253784179688, "destined": 8.861309051513672, "##turing": 8.808481216430664, "teatro": 11.782876014709473, "denying": 8.929817199707031, "weary": 9.554855346679688, "captained": 11.13907527923584, "mans": 8.428434371948242, "##hawks": 9.726855278015137, "##code": 7.1135149002075195, "wakefield": 10.032711029052734, "bollywood": 9.389029502868652, "thankfully": 8.629507064819336, "##16": 7.029477596282959, "cyril": 10.3407621383667, "##wu": 8.6416015625, "amendments": 7.475114345550537, "##bahn": 10.161656379699707, "consultation": 7.4153056144714355, "stud": 7.55328893661499, "reflections": 9.182108879089355, "kindness": 8.850991249084473, "1787": 8.322943687438965, "internally": 8.126940727233887, "##ovo": 8.112122535705566, "tex": 8.120454788208008, "mosaic": 8.354159355163574, "distribute": 7.354089736938477, "paddy": 10.0720853805542, "seeming": 9.816022872924805, "143": 7.839785099029541, "##hic": 7.206029415130615, "piers": 9.007051467895508, "##15": 6.872457027435303, "##mura": 9.051399230957031, "##verse": 8.69284439086914, "popularly": 8.21407413482666, "winger": 10.222005844116211, "kang": 9.430442810058594, "sentinel": 8.994213104248047, "mccoy": 9.402644157409668, "##anza": 9.038934707641602, "covenant": 8.42070198059082, "##bag": 7.927384376525879, "verge": 8.95490550994873, "fireworks": 8.323875427246094, "suppress": 7.488568305969238, "thrilled": 8.800942420959473, "dominate": 8.25760555267334, "##jar": 8.606367111206055, "swansea": 10.26328182220459, "##60": 6.905983924865723, "142": 7.7954020500183105, "reconciliation": 8.72922420501709, "##ndi": 8.152528762817383, "stiffened": 10.89819049835205, "cue": 8.456774711608887, "dorian": 10.260046005249023, "##uf": 6.766971111297607, "damascus": 9.74213695526123, "amor": 7.778780460357666, "ida": 8.984240531921387, "foremost": 8.066417694091797, "##aga": 7.579954147338867, "porsche": 8.75471305847168, "unseen": 9.253893852233887, "dir": 8.548709869384766, "##had": 7.684711456298828, "##azi": 7.729482173919678, "stony": 9.163589477539062, "lexi": 7.907824516296387, "melodies": 9.702508926391602, "##nko": 10.394731521606445, "angular": 8.042916297912598, "integer": 7.963130950927734, "podcast": 8.372584342956543, "ants": 7.864502906799316, "inherent": 7.919887542724609, "jaws": 8.176372528076172, "justify": 8.284574508666992, "persona": 8.578324317932129, "##olved": 8.84312629699707, "josephine": 9.587299346923828, "##nr": 7.762165069580078, "##ressed": 8.923006057739258, "customary": 7.90936279296875, "flashes": 7.963456153869629, "gala": 7.5556640625, "cyrus": 8.876582145690918, "glaring": 10.266529083251953, "backyard": 7.709616661071777, "ariel": 9.244487762451172, "physiology": 7.42683219909668, "greenland": 8.299017906188965, "html": 6.502685070037842, "stir": 6.302330017089844, "avon": 8.764802932739258, "atletico": 11.457042694091797, "finch": 8.847838401794434, "methodology": 7.752378940582275, "ked": 10.007296562194824, "##lent": 8.000877380371094, "mas": 6.605304718017578, "catholicism": 9.69881534576416, "townsend": 9.5405912399292, "branding": 8.643525123596191, "quincy": 8.658391952514648, "fits": 6.790329456329346, "containers": 6.9977946281433105, "1777": 8.940985679626465, "ashore": 9.497474670410156, "aragon": 9.345372200012207, "##19": 7.171429634094238, "forearm": 7.790195465087891, "poisoning": 6.901815414428711, "##sd": 7.328787326812744, "adopting": 8.401881217956543, "conquer": 8.436225891113281, "grinding": 7.828929424285889, "amnesty": 9.747928619384766, "keller": 9.19762134552002, "finances": 8.119694709777832, "evaluate": 6.538623809814453, "forged": 8.825268745422363, "lankan": 10.228246688842773, "instincts": 9.36366081237793, "##uto": 7.699080944061279, "guam": 8.39986801147461, "bosnian": 10.313125610351562, "photographed": 8.835323333740234, "workplace": 6.91221284866333, "desirable": 7.51043701171875, "protector": 8.212821960449219, "##dog": 7.837490081787109, "allocation": 7.927070617675781, "intently": 11.12363052368164, "encourages": 7.855125904083252, "willy": 9.324871063232422, "##sten": 7.479311943054199, "bodyguard": 9.86052131652832, "electro": 6.184755802154541, "brighter": 8.376015663146973, "##\u03bd": 7.903835773468018, "bihar": 10.037872314453125, "##chev": 9.40952205657959, "lasts": 6.3018975257873535, "opener": 8.312751770019531, "amphibious": 9.597241401672363, "sal": 6.313379287719727, "verde": 8.845479011535645, "arte": 7.543843746185303, "##cope": 7.4156813621521, "captivity": 8.008668899536133, "vocabulary": 7.2016191482543945, "yields": 7.410245418548584, "##tted": 9.520341873168945, "agreeing": 8.780131340026855, "desmond": 9.963117599487305, "pioneered": 8.949663162231445, "##chus": 9.40676498413086, "strap": 8.072198867797852, "campaigned": 10.19439697265625, "railroads": 8.791970252990723, "##\u043e\u0432\u0438\u0447": 12.13427448272705, "emblem": 8.106106758117676, "##dre": 7.603260517120361, "stormed": 10.383702278137207, "501": 7.735674858093262, "##ulous": 8.829896926879883, "marijuana": 6.52433967590332, "northumberland": 9.847604751586914, "##gn": 7.522703647613525, "##nath": 9.657293319702148, "bowen": 9.64150333404541, "landmarks": 8.389362335205078, "beaumont": 9.405389785766602, "##qua": 6.650263786315918, "danube": 9.457588195800781, "##bler": 9.160356521606445, "attorneys": 7.612828731536865, "th": 5.390586853027344, "ge": 5.30616569519043, "flyers": 9.280226707458496, "critique": 9.05429744720459, "villains": 9.068917274475098, "cass": 7.243291854858398, "mutation": 7.291247844696045, "acc": 6.09449577331543, "##0s": 8.711898803710938, "colombo": 10.358429908752441, "mckay": 9.982511520385742, "motif": 9.242149353027344, "sampling": 7.78284215927124, "concluding": 9.20322036743164, "syndicate": 9.617426872253418, "##rell": 9.104903221130371, "neon": 7.5517802238464355, "stables": 10.027575492858887, "ds": 6.488678455352783, "warnings": 7.4739179611206055, "clint": 9.0144624710083, "mourning": 8.894564628601074, "wilkinson": 9.93005657196045, "##tated": 8.506430625915527, "merrill": 9.40676498413086, "leopard": 8.23091983795166, "evenings": 8.42481803894043, "exhaled": 9.426223754882812, "emil": 9.724961280822754, "sonia": 10.037872314453125, "ezra": 9.56609058380127, "discrete": 8.048916816711426, "stove": 7.197833061218262, "farrell": 9.795509338378906, "fifteenth": 8.984240531921387, "prescribed": 6.235415458679199, "superhero": 8.057093620300293, "##rier": 8.897868156433105, "worms": 7.2371416091918945, "helm": 8.089377403259277, "wren": 7.900472640991211, "##duction": 6.1558146476745605, "##hc": 7.666914939880371, "expo": 7.797051906585693, "##rator": 7.615349769592285, "hq": 8.792715072631836, "unfamiliar": 8.50979232788086, "antony": 7.3088274002075195, "prevents": 6.718641757965088, "acceleration": 7.596706867218018, "fiercely": 9.878008842468262, "mari": 7.906595706939697, "painfully": 9.813952445983887, "calculations": 7.077358245849609, "cheaper": 6.6324143409729, "ign": 6.975158214569092, "clifton": 9.405389785766602, "irvine": 9.007975578308105, "davenport": 9.417838096618652, "mozambique": 9.170086860656738, "##np": 7.878139019012451, "pierced": 8.774264335632324, "##evich": 10.704215049743652, "wonders": 7.935253620147705, "##wig": 8.913715362548828, "##cate": 7.141266822814941, "##iling": 8.07765007019043, "crusade": 8.928110122680664, "ware": 8.314135551452637, "##uel": 8.319689750671387, "enzymes": 6.268939971923828, "reasonably": 7.761898994445801, "mls": 8.197917938232422, "##coe": 8.91877269744873, "mater": 8.358010292053223, "ambition": 8.993303298950195, "bunny": 8.698929786682129, "eliot": 9.704360961914062, "kernel": 7.744513988494873, "##fin": 6.492852210998535, "asphalt": 7.538303852081299, "headmaster": 10.508133888244629, "torah": 9.416447639465332, "aden": 6.79345178604126, "lush": 8.108734130859375, "pins": 7.53787899017334, "waived": 8.59836196899414, "##care": 6.602133750915527, "##yas": 8.795699119567871, "joao": 11.18689250946045, "substrate": 7.7161946296691895, "enforce": 7.314247131347656, "##grad": 7.892265796661377, "##ules": 6.81961727142334, "alvarez": 10.158732414245605, "selections": 8.27210521697998, "epidemic": 7.967364311218262, "tempted": 9.036080360412598, "##bit": 6.064898490905762, "bremen": 10.428569793701172, "translates": 7.505901336669922, "ensured": 9.482515335083008, "waterfront": 8.240307807922363, "29th": 8.380938529968262, "forrest": 8.756147384643555, "manny": 9.585651397705078, "malone": 9.410902976989746, "kramer": 9.590601921081543, "reigning": 9.216788291931152, "cookies": 7.149298667907715, "simpler": 7.641153335571289, "absorption": 6.64529275894165, "205": 7.471331596374512, "engraved": 9.119255065917969, "##ffy": 8.875772476196289, "evaluated": 7.428925037384033, "1778": 9.379608154296875, "haze": 9.222496032714844, "146": 7.791836738586426, "comforting": 9.366301536560059, "crossover": 8.028244018554688, "##abe": 8.16279125213623, "thorn": 8.679452896118164, "##rift": 8.449878692626953, "##imo": 7.401497840881348, "##pop": 7.810629367828369, "suppression": 8.546960830688477, "fatigue": 6.145312786102295, "cutter": 7.9911394119262695, "##tr": 6.672719478607178, "201": 7.913064956665039, "wurttemberg": 10.463592529296875, "##orf": 9.787420272827148, "enforced": 8.273877143859863, "hovering": 9.398540496826172, "proprietary": 7.704585552215576, "gb": 7.11838960647583, "samurai": 9.307271957397461, "syllable": 8.081299781799316, "ascent": 9.157135009765625, "lacey": 9.982511520385742, "tick": 6.898335933685303, "lars": 9.836966514587402, "tractor": 8.099381446838379, "merchandise": 7.541069984436035, "rep": 5.502466201782227, "bouncing": 9.36366081237793, "defendants": 8.839998245239258, "##yre": 8.13000774383545, "huntington": 8.353199005126953, "##ground": 8.312291145324707, "##oko": 9.25862979888916, "standardized": 7.370481967926025, "##hor": 7.871297836303711, "##hima": 9.691469192504883, "assassinated": 8.789739608764648, "nu": 5.459353923797607, "predecessors": 9.163589477539062, "rainy": 7.667640209197998, "liar": 8.819896697998047, "assurance": 7.782570838928223, "lyrical": 9.426223754882812, "##uga": 7.751063823699951, "secondly": 8.635854721069336, "flattened": 8.300383567810059, "ios": 6.757096767425537, "parameter": 7.709868907928467, "undercover": 9.5405912399292, "##mity": 7.522284984588623, "bordeaux": 9.478071212768555, "punish": 7.857461929321289, "ridges": 8.01241683959961, "markers": 7.896208763122559, "exodus": 9.022866249084473, "inactive": 7.530683994293213, "hesitate": 8.790482521057129, "debbie": 8.876582145690918, "nyc": 7.741645812988281, "pledge": 8.285470962524414, "savoy": 10.096477508544922, "nagar": 10.306334495544434, "offset": 7.135001182556152, "organist": 10.559101104736328, "##tium": 8.312291145324707, "hesse": 10.158732414245605, "marin": 9.0181884765625, "converting": 7.009871482849121, "##iver": 8.182827949523926, "diagram": 6.827936172485352, "propulsion": 8.977049827575684, "pu": 5.57643461227417, "validity": 7.8441033363342285, "reverted": 10.19439697265625, "supportive": 7.91554069519043, "##dc": 7.747914791107178, "ministries": 9.463397979736328, "clans": 9.153923034667969, "responds": 7.815103054046631, "proclamation": 8.290867805480957, "##inae": 9.494464874267578, "##\u00f8": 8.977945327758789, "##rea": 6.634477615356445, "ein": 8.02202033996582, "pleading": 9.122357368469238, "patriot": 8.298563957214355, "sf": 7.466376304626465, "birch": 8.458373069763184, "islanders": 9.575823783874512, "strauss": 9.603924751281738, "hates": 9.266973495483398, "##dh": 8.19750690460205, "brandenburg": 10.362001419067383, "concession": 8.936676025390625, "rd": 6.6013007164001465, "##ob": 6.210440635681152, "1900s": 8.501408576965332, "killings": 9.66439151763916, "textbook": 8.293577194213867, "antiquity": 8.620060920715332, "cinematography": 10.26328182220459, "wharf": 9.322338104248047, "embarrassing": 8.643525123596191, "setup": 6.5991387367248535, "creed": 8.739765167236328, "farmland": 8.669525146484375, "inequality": 8.536529541015625, "centred": 9.251533508300781, "signatures": 8.450407028198242, "fallon": 9.417838096618652, "370": 7.7841997146606445, "##ingham": 9.653762817382812, "##uts": 7.793755054473877, "ceylon": 10.045663833618164, "gazing": 9.331233024597168, "directive": 8.135397911071777, "laurie": 9.291202545166016, "##tern": 7.800636291503906, "globally": 7.732316017150879, "##uated": 8.548709869384766, "##dent": 7.564785480499268, "allah": 8.803951263427734, "excavation": 8.691496849060059, "threads": 7.669092178344727, "##cross": 8.576522827148438, "148": 7.720264434814453, "frantically": 11.237112998962402, "icc": 9.255075454711914, "utilize": 7.3482747077941895, "determines": 6.565567970275879, "respiratory": 6.081392765045166, "thoughtful": 8.872540473937988, "receptions": 9.90030574798584, "##dicate": 8.036602020263672, "merging": 8.963704109191895, "chandra": 9.605602264404297, "seine": 9.66974925994873, "147": 7.680539131164551, "builders": 7.925504684448242, "builds": 7.208012580871582, "diagnostic": 6.528897762298584, "dev": 7.3152666091918945, "visibility": 7.680049419403076, "goddamn": 11.523365020751953, "analyses": 8.318761825561523, "dhaka": 10.443984031677246, "cho": 5.44481897354126, "proves": 8.40339469909668, "chancel": 11.007978439331055, "concurrent": 8.557502746582031, "curiously": 10.085562705993652, "canadians": 8.623200416564941, "pumped": 8.004935264587402, "restoring": 8.253252983093262, "1850s": 9.199857711791992, "turtles": 7.699580192565918, "jaguar": 8.72922420501709, "sinister": 9.37559700012207, "spinal": 5.992281913757324, "traction": 8.143537521362305, "declan": 11.178762435913086, "vows": 9.408143043518066, "1784": 9.550077438354492, "glowed": 11.523365020751953, "capitalism": 8.604514122009277, "swirling": 9.610652923583984, "install": 5.348282337188721, "universidad": 10.91049861907959, "##lder": 8.383408546447754, "##oat": 8.130776405334473, "soloist": 10.520634651184082, "##genic": 7.07977294921875, "##oor": 8.047148704528809, "coincidence": 9.13486385345459, "beginnings": 8.228798866271973, "nissan": 8.025818824768066, "dip": 6.070709228515625, "resorts": 7.41155481338501, "caucasus": 9.323603630065918, "combustion": 7.296239376068115, "infectious": 6.755833148956299, "##eno": 6.496818542480469, "pigeon": 8.61132526397705, "serpent": 8.496411323547363, "##itating": 7.958591938018799, "conclude": 8.283679008483887, "masked": 9.384981155395508, "salad": 6.442102432250977, "jew": 8.98604679107666, "##gr": 6.768839359283447, "surreal": 9.187621116638184, "toni": 8.706417083740234, "##wc": 8.101244926452637, "harmonica": 9.73829460144043, "151": 7.484734535217285, "##gins": 9.08176326751709, "##etic": 7.254587173461914, "##coat": 8.162394523620605, "fishermen": 8.914556503295898, "intending": 9.391737937927246, "bravery": 9.253893852233887, "##wave": 8.330891609191895, "klaus": 10.121478080749512, "titan": 8.2476224899292, "wembley": 10.659872055053711, "taiwanese": 10.141366004943848, "ransom": 9.338919639587402, "40th": 8.914556503295898, "incorrect": 7.3173089027404785, "hussein": 9.55965518951416, "eyelids": 7.829213619232178, "jp": 7.132449626922607, "cooke": 7.359760761260986, "dramas": 9.199857711791992, "utilities": 7.384957790374756, "##etta": 9.281439781188965, "##print": 7.387513160705566, "eisenhower": 8.400874137878418, "principally": 8.533076286315918, "granada": 9.55325984954834, "lana": 8.861309051513672, "##rak": 8.393851280212402, "openings": 7.5994133949279785, "concord": 8.26504898071289, "##bl": 6.754570484161377, "bethany": 9.721183776855469, "connie": 9.329957008361816, "morality": 8.743304252624512, "sega": 9.475119590759277, "##mons": 9.222496032714844, "##nard": 9.281439781188965, "earnings": 6.140312671661377, "##kara": 10.061432838439941, "##cine": 7.962806224822998, "wii": 8.392851829528809, "communes": 10.821682929992676, "##rel": 7.418881416320801, "coma": 7.675895690917969, "composing": 9.220208168029785, "softened": 8.651901245117188, "severed": 9.464855194091797, "grapes": 7.408377647399902, "##17": 7.206943988800049, "nguyen": 9.946450233459473, "analyzed": 7.760836601257324, "warlord": 10.206573486328125, "hubbard": 9.489967346191406, "heavenly": 8.95403003692627, "behave": 7.6620941162109375, "slovenian": 10.313125610351562, "##hit": 7.348450183868408, "##ony": 7.110047340393066, "hailed": 9.16466999053955, "filmmakers": 9.653762817382812, "trance": 10.009808540344238, "caldwell": 9.451811790466309, "skye": 9.82643985748291, "unrest": 8.40339469909668, "coward": 9.326140403747559, "likelihood": 7.597833633422852, "##aging": 8.254121780395508, "bern": 7.973911762237549, "sci": 6.947594165802002, "taliban": 9.873607635498047, "honolulu": 8.189732551574707, "propose": 8.524495124816895, "##wang": 9.66617488861084, "1700": 7.824110984802246, "browser": 6.08020544052124, "imagining": 9.862690925598145, "cobra": 8.317834854125977, "contributes": 7.4825215339660645, "dukes": 9.638028144836426, "instinctively": 10.273054122924805, "conan": 9.51266098022461, "violinist": 10.077454566955566, "##ores": 8.101244926452637, "accessories": 6.810956001281738, "gradual": 7.705087661743164, "##amp": 6.524416923522949, "quotes": 6.881669998168945, "sioux": 8.587383270263672, "##dating": 7.63224458694458, "undertake": 8.509231567382812, "intercepted": 10.064085960388184, "sparkling": 8.293577194213867, "compressed": 7.444279193878174, "139": 7.763228416442871, "fungus": 6.989537239074707, "tombs": 9.209980964660645, "haley": 9.287530899047852, "imposing": 8.887168884277344, "rests": 8.08716869354248, "degradation": 8.223725318908691, "lincolnshire": 9.88686752319336, "retailers": 7.465585708618164, "wetlands": 8.502522468566895, "tulsa": 8.65060806274414, "distributor": 7.919576644897461, "dungeon": 9.219067573547363, "nun": 8.49807357788086, "greenhouse": 7.514163494110107, "convey": 7.036785125732422, "atlantis": 9.398540496826172, "aft": 8.977049827575684, "exits": 8.397858619689941, "oman": 8.81379222869873, "dresser": 9.639764785766602, "lyons": 9.680550575256348, "##sti": 5.428583145141602, "joking": 9.643245697021484, "eddy": 9.50503921508789, "judgement": 8.666237831115723, "omitted": 8.819131851196289, "digits": 7.0092453956604, "##cts": 6.7297492027282715, "##game": 8.63014030456543, "juniors": 9.678742408752441, "##rae": 8.727827072143555, "cents": 6.698440074920654, "stricken": 9.765506744384766, "une": 6.767757415771484, "##ngo": 9.236329078674316, "wizards": 9.299822807312012, "weir": 9.605602264404297, "breton": 9.3479642868042, "nan": 7.697834014892578, "technician": 6.787918567657471, "fibers": 6.348830699920654, "liking": 8.649961471557617, "royalty": 8.231769561767578, "##cca": 7.132166385650635, "154": 7.646111011505127, "persia": 9.015393257141113, "terribly": 9.228236198425293, "magician": 9.175533294677734, "##rable": 8.522787094116211, "##unt": 6.743281841278076, "vance": 9.502006530761719, "cafeteria": 9.062067985534668, "booker": 9.322338104248047, "camille": 9.704360961914062, "warmer": 7.102323532104492, "##static": 7.376608848571777, "consume": 6.319892406463623, "cavern": 8.679452896118164, "gaps": 7.839785099029541, "compass": 8.025818824768066, "contemporaries": 9.695136070251465, "foyer": 10.188364028930664, "soothing": 8.160017967224121, "graveyard": 9.603924751281738, "maj": 8.628242492675781, "plunged": 9.639764785766602, "blush": 9.371603012084961, "##wear": 7.55328893661499, "cascade": 7.992142200469971, "demonstrates": 7.779321193695068, "ordinance": 7.892871379852295, "##nov": 9.405389785766602, "boyle": 9.289977073669434, "##lana": 9.424820899963379, "rockefeller": 9.110005378723145, "shaken": 9.240982055664062, "banjo": 9.500494003295898, "izzy": 11.086031913757324, "##ense": 7.521031379699707, "breathless": 9.437515258789062, "vines": 8.304032325744629, "##32": 6.939972877502441, "##eman": 9.037981986999512, "alterations": 8.553390502929688, "chromosome": 6.801148414611816, "dwellings": 9.232852935791016, "feudal": 8.869318008422852, "mole": 7.105902194976807, "153": 7.642803192138672, "catalonia": 9.816022872924805, "relics": 9.963117599487305, "tenant": 7.0560126304626465, "mandated": 8.214909553527832, "##fm": 8.339849472045898, "fridge": 6.856105804443359, "hats": 8.01892375946045, "honesty": 8.635854721069336, "patented": 7.796226978302002, "raul": 10.05878734588623, "heap": 8.410484313964844, "cruisers": 9.875805854797363, "accusing": 10.10197925567627, "enlightenment": 8.389860153198242, "infants": 6.75914192199707, "wherein": 8.173561096191406, "chatham": 9.617426872253418, "contractors": 7.04414701461792, "zen": 8.184853553771973, "affinity": 8.380444526672363, "hc": 6.534488677978516, "osborne": 9.85189151763916, "piston": 8.26680850982666, "156": 7.675408363342285, "traps": 8.102364540100098, "maturity": 7.1958699226379395, "##rana": 9.685995101928711, "lagos": 9.862690925598145, "##zal": 9.379608154296875, "peering": 11.042703628540039, "##nay": 9.126508712768555, "attendant": 8.475040435791016, "dealers": 6.867121696472168, "protocols": 7.831774711608887, "subset": 7.882625579833984, "prospects": 8.139653205871582, "biographical": 9.12755012512207, "##cre": 5.732950687408447, "artery": 6.305978775024414, "##zers": 7.887735843658447, "insignia": 9.122357368469238, "nuns": 10.135643005371094, "endured": 9.19762134552002, "##eration": 7.344942092895508, "recommend": 5.707700252532959, "schwartz": 9.291202545166016, "serbs": 10.72972583770752, "berger": 9.50503921508789, "cromwell": 9.680550575256348, "crossroads": 8.834546089172363, "##ctor": 7.22479772567749, "enduring": 8.206584930419922, "clasped": 12.073030471801758, "grounded": 8.574724197387695, "##bine": 8.531928062438965, "marseille": 9.882428169250488, "twitched": 12.838003158569336, "abel": 9.186516761779785, "choke": 8.71741008758545, "https": 6.528201103210449, "catalyst": 7.7885565757751465, "moldova": 9.895806312561035, "italians": 9.307271957397461, "##tist": 7.232436180114746, "disastrous": 9.082758903503418, "wee": 7.657535552978516, "##oured": 9.27418041229248, "##nti": 6.979766368865967, "wwf": 9.423420906066895, "nope": 9.443209648132324, "##piration": 6.118553638458252, "##asa": 8.136942863464355, "expresses": 8.279657363891602, "thumbs": 7.309841632843018, "167": 7.953752040863037, "##nza": 8.890448570251465, "coca": 8.11401081085205, "1781": 9.043709754943848, "cheating": 8.775727272033691, "##ption": 7.515616416931152, "skipped": 9.181010246276855, "sensory": 6.722111225128174, "heidelberg": 10.179381370544434, "spies": 9.719300270080566, "satan": 8.794205665588379, "dangers": 7.999865531921387, "semifinal": 10.309724807739258, "202": 7.093705177307129, "bohemia": 9.675134658813477, "whitish": 8.90284538269043, "confusing": 7.188654899597168, "shipbuilding": 9.989882469177246, "relies": 7.627819538116455, "surgeons": 7.376608848571777, "landings": 9.354474067687988, "ravi": 9.009824752807617, "baku": 10.4058837890625, "moor": 8.559270858764648, "suffix": 7.361717700958252, "alejandro": 10.197427749633789, "##yana": 9.355781555175781, "litre": 8.19750690460205, "upheld": 9.261007308959961, "##unk": 8.008328437805176, "rajasthan": 9.824347496032715, "##rek": 9.371603012084961, "coaster": 8.460508346557617, "insists": 9.2374906539917, "posture": 7.618337631225586, "scenarios": 8.076921463012695, "etienne": 10.664703369140625, "favoured": 9.749866485595703, "appoint": 8.169958114624023, "transgender": 8.4546480178833, "elephants": 8.241595268249512, "poked": 9.36366081237793, "greenwood": 9.182108879089355, "defences": 10.581128120422363, "fulfilled": 8.690824508666992, "militant": 9.773420333862305, "somali": 9.569324493408203, "1758": 9.732558250427246, "chalk": 8.01789379119873, "potent": 7.332585334777832, "##ucci": 8.908683776855469, "migrants": 9.367624282836914, "wink": 9.091758728027344, "assistants": 7.249162197113037, "nos": 7.6844658851623535, "restriction": 7.7717790603637695, "activism": 9.420625686645508, "niger": 8.829896926879883, "##ario": 9.125470161437988, "colon": 6.1506028175354, "shaun": 9.429035186767578, "##sat": 6.910170078277588, "daphne": 9.687816619873047, "##erated": 8.621315956115723, "swam": 10.306334495544434, "congregations": 10.383702278137207, "reprise": 9.534317016601562, "considerations": 7.442925930023193, "magnet": 7.225885391235352, "playable": 9.093770027160645, "xvi": 8.96902084350586, "##\u0440": 8.958415985107422, "overthrow": 8.804704666137695, "tobias": 10.107511520385742, "knob": 8.013099670410156, "chavez": 9.467777252197266, "coding": 7.22479772567749, "##mers": 7.168929576873779, "propped": 10.804828643798828, "katrina": 8.880640983581543, "orient": 8.775727272033691, "newcomer": 9.427628517150879, "##suke": 10.981040954589844, "temperate": 7.286281585693359, "##pool": 8.953154563903809, "farmhouse": 9.551668167114258, "interrogation": 9.889095306396484, "##vd": 7.6082611083984375, "committing": 8.569348335266113, "##vert": 6.5553388595581055, "forthcoming": 9.126508712768555, "strawberry": 7.897425174713135, "joaquin": 8.940122604370117, "macau": 9.443209648132324, "ponds": 8.112122535705566, "shocking": 8.14198112487793, "siberia": 8.741179466247559, "##cellular": 6.998413562774658, "chant": 8.666894912719727, "contributors": 8.519381523132324, "##nant": 8.71603012084961, "##ologists": 7.628749847412109, "sped": 10.14423942565918, "absorb": 6.087250232696533, "hail": 7.6611328125, "1782": 9.524978637695312, "spared": 9.807766914367676, "##hore": 8.360908508300781, "barbados": 9.055265426635742, "karate": 9.175533294677734, "opus": 9.805713653564453, "originates": 7.486548900604248, "saul": 9.012604713439941, "##xie": 8.698251724243164, "evergreen": 7.559563159942627, "leaped": 11.086031913757324, "##rock": 7.998518466949463, "correlation": 7.751326560974121, "exaggerated": 8.707785606384277, "weekday": 8.694192886352539, "unification": 9.367624282836914, "bump": 7.304781913757324, "tracing": 8.703688621520996, "brig": 9.185412406921387, "afb": 8.883084297180176, "pathways": 7.600091457366943, "utilizing": 7.9709601402282715, "##ners": 7.661853790283203, "mod": 6.335085868835449, "mb": 6.746934413909912, "disturbance": 7.998518466949463, "kneeling": 10.209641456604004, "##stad": 9.253893852233887, "##guchi": 10.810415267944336, "100th": 8.934098243713379, "pune": 9.55325984954834, "##thy": 6.62497091293335, "decreasing": 7.387513160705566, "168": 7.572890758514404, "manipulation": 8.158041954040527, "miriam": 9.849745750427246, "academia": 9.31226921081543, "ecosystem": 7.471927642822266, "occupational": 6.916653156280518, "rbi": 9.545323371887207, "##lem": 7.408191204071045, "rift": 8.416090965270996, "##14": 7.004375457763672, "rotary": 8.274320602416992, "stacked": 8.43258285522461, "incorporation": 8.3422212600708, "awakening": 8.659695625305176, "generators": 8.42430305480957, "guerrero": 10.161656379699707, "racist": 8.695544242858887, "##omy": 6.364999771118164, "cyber": 7.667398452758789, "derivatives": 7.995157241821289, "culminated": 9.83485221862793, "allie": 10.3407621383667, "annals": 9.66617488861084, "panzer": 10.87402057647705, "sainte": 10.60365104675293, "wikipedia": 6.020242691040039, "pops": 7.999528408050537, "zu": 7.220304489135742, "austro": 9.327410697937012, "##vate": 7.261973857879639, "algerian": 10.471545219421387, "politely": 10.170479774475098, "nicholson": 9.607282638549805, "mornings": 8.451994895935059, "educate": 7.984477996826172, "tastes": 7.400571823120117, "thrill": 8.454116821289062, "dartmouth": 9.37559700012207, "##gating": 8.277874946594238, "db": 7.182681560516357, "##jee": 9.577454566955566, "regan": 10.326848030090332, "differing": 8.220357894897461, "concentrating": 8.780131340026855, "choreography": 10.030139923095703, "divinity": 9.691469192504883, "##media": 7.570474147796631, "pledged": 9.087748527526855, "alexandre": 10.124295234680176, "routing": 6.671111583709717, "gregor": 9.457588195800781, "madeline": 10.234525680541992, "##idal": 7.896208763122559, "apocalypse": 9.374263763427734, "##hora": 8.605749130249023, "gunfire": 10.436246871948242, "culminating": 9.52188491821289, "elves": 9.629392623901367, "fined": 9.270570755004883, "liang": 10.981040954589844, "lam": 6.944538593292236, "programmed": 8.476668357849121, "tar": 6.163576126098633, "guessing": 8.632676124572754, "transparency": 8.347933769226074, "gabrielle": 9.977627754211426, "##gna": 7.558261871337891, "cancellation": 7.755542278289795, "flexibility": 6.93159818649292, "##lining": 8.248486518859863, "accession": 9.608966827392578, "shea": 8.688807487487793, "stronghold": 9.37559700012207, "nets": 8.169159889221191, "specializes": 7.277730941772461, "##rgan": 8.690824508666992, "abused": 8.295388221740723, "hasan": 10.892093658447266, "sgt": 9.098814964294434, "ling": 7.8269429206848145, "exceeding": 7.503436088562012, "##\u2084": 12.756325721740723, "admiration": 9.189835548400879, "supermarket": 8.02202033996582, "##ark": 7.81035041809082, "photographers": 8.756866455078125, "specialised": 8.849413871765137, "tilt": 7.774466037750244, "resonance": 7.9476542472839355, "hmm": 9.349263191223145, "perfume": 7.96410608291626, "380": 7.698332786560059, "sami": 9.534317016601562, "threatens": 8.996037483215332, "garland": 8.935815811157227, "botany": 8.53537654876709, "guarding": 9.556452751159668, "boiled": 7.207554340362549, "greet": 8.725038528442383, "puppy": 7.027563095092773, "russo": 9.824347496032715, "supplier": 7.265202522277832, "wilmington": 8.621315956115723, "vibrant": 7.632711410522461, "vijay": 10.218900680541992, "##bius": 10.337265014648438, "paralympic": 11.326858520507812, "grumbled": 12.610613822937012, "paige": 9.528081893920898, "faa": 8.212821960449219, "licking": 9.104903221130371, "margins": 7.86303186416626, "hurricanes": 8.030326843261719, "##gong": 9.916215896606445, "fest": 8.050333976745605, "grenade": 10.358429908752441, "ripping": 9.472175598144531, "##uz": 8.410993576049805, "counseling": 7.323117256164551, "weigh": 6.356360912322998, "##sian": 8.942715644836426, "needles": 7.3551506996154785, "wiltshire": 10.299589157104492, "edison": 8.35656452178955, "costly": 7.538091659545898, "##not": 7.316797733306885, "fulton": 8.753995895385742, "tramway": 11.170698165893555, "redesigned": 8.870122909545898, "staffordshire": 9.575823783874512, "cache": 7.89803409576416, "gasping": 10.2408447265625, "watkins": 9.617426872253418, "sleepy": 8.453055381774902, "candidacy": 9.620831489562988, "##group": 8.214909553527832, "monkeys": 8.230071067810059, "timeline": 7.246619701385498, "throbbing": 8.910358428955078, "##bid": 7.138556480407715, "##sos": 8.171558380126953, "berth": 9.357090950012207, "uzbekistan": 9.595577239990234, "vanderbilt": 8.97169017791748, "bothering": 9.856197357177734, "overturned": 9.615729331970215, "ballots": 9.430442810058594, "gem": 7.567625999450684, "##iger": 8.255426406860352, "sunglasses": 8.647381782531738, "subscribers": 7.7760820388793945, "hooker": 9.801619529724121, "compelling": 8.202035903930664, "ang": 6.358709812164307, "exceptionally": 8.30815315246582, "saloon": 9.368948936462402, "stab": 7.9177117347717285, "##rdi": 7.044795036315918, "carla": 9.783400535583496, "terrifying": 8.994213104248047, "rom": 6.922145366668701, "##vision": 8.30357551574707, "coil": 7.1546406745910645, "##oids": 7.054964065551758, "satisfying": 8.227951049804688, "vendors": 7.530262470245361, "31st": 8.155674934387207, "mackay": 10.31653881072998, "deities": 9.262197494506836, "overlooked": 8.161205291748047, "ambient": 8.067499160766602, "bahamas": 7.990805149078369, "felipe": 10.247204780578613, "olympia": 9.037981986999512, "whirled": 12.269309997558594, "botanist": 9.253893852233887, "advertised": 8.150175094604492, "tugging": 10.719443321228027, "##dden": 9.785408020019531, "disciples": 9.216788291931152, "morales": 10.26978588104248, "unionist": 10.804828643798828, "rites": 9.464855194091797, "foley": 9.322338104248047, "morse": 9.063043594360352, "motives": 9.09477710723877, "creepy": 9.097804069519043, "##\u2080": 13.191643714904785, "soo": 7.972270965576172, "##sz": 9.281439781188965, "bargain": 8.057093620300293, "highness": 10.365585327148438, "frightening": 8.703006744384766, "turnpike": 8.977945327758789, "tory": 9.708074569702148, "reorganization": 9.34020709991455, "##cer": 5.761223793029785, "depict": 8.923006057739258, "biographer": 9.925421714782715, "##walk": 8.189325332641602, "unopposed": 10.793747901916504, "manifesto": 9.416447639465332, "##gles": 6.966724872589111, "institut": 10.292889595031738, "emile": 9.55325984954834, "accidental": 7.938418388366699, "kapoor": 10.218900680541992, "##dam": 8.759024620056152, "kilkenny": 10.981040954589844, "cortex": 7.192857265472412, "lively": 8.253686904907227, "##13": 6.903841018676758, "romanesque": 10.38005256652832, "jain": 9.587299346923828, "shan": 7.840647220611572, "cannons": 10.08828067779541, "##ood": 8.712586402893066, "##ske": 8.158831596374512, "petrol": 8.264609336853027, "echoing": 10.631366729736328, "amalgamated": 10.67443561553955, "disappears": 8.475582122802734, "cautious": 8.79944133758545, "proposes": 8.880640983581543, "sanctions": 8.672823905944824, "trenton": 9.037030220031738, "##\u0631": 8.710525512695312, "flotilla": 11.500764846801758, "aus": 7.291414260864258, "contempt": 8.610082626342773, "tor": 6.515438079833984, "canary": 8.69689655303955, "cote": 8.934956550598145, "theirs": 8.919617652893066, "##hun": 8.45252513885498, "conceptual": 7.958591938018799, "deleted": 7.4124908447265625, "fascinating": 7.624571800231934, "paso": 8.420188903808594, "blazing": 9.502006530761719, "elf": 8.784554481506348, "honourable": 10.35487174987793, "hutchinson": 9.502006530761719, "##eiro": 10.39104175567627, "##outh": 9.02474308013916, "##zin": 8.929817199707031, "surveyor": 8.656440734863281, "tee": 7.570035457611084, "amidst": 9.456140518188477, "wooded": 8.701645851135254, "reissue": 9.882428169250488, "intro": 7.5969319343566895, "##ono": 7.052346706390381, "cobb": 8.257169723510742, "shelters": 8.510354042053223, "newsletter": 7.628749847412109, "hanson": 9.529637336730957, "brace": 7.446602821350098, "encoding": 8.476668357849121, "confiscated": 10.369182586669922, "dem": 7.320208549499512, "caravan": 9.051399230957031, "marino": 9.492963790893555, "scroll": 6.838222503662109, "melodic": 9.466315269470215, "cows": 7.477110862731934, "imam": 10.234525680541992, "##adi": 7.733348369598389, "##aneous": 7.023365020751953, "northward": 9.387678146362305, "searches": 7.224952697753906, "biodiversity": 8.587989807128906, "cora": 9.122357368469238, "310": 7.573770999908447, "roaring": 9.248003959655762, "##bers": 7.388244152069092, "connell": 9.607282638549805, "theologian": 10.244019508361816, "halo": 7.504462718963623, "compose": 8.287715911865234, "pathetic": 9.987420082092285, "unmarried": 8.571136474609375, "dynamo": 9.605602264404297, "##oot": 8.070027351379395, "az": 6.517732620239258, "calculation": 6.656665802001953, "toulouse": 10.110289573669434, "deserves": 8.479387283325195, "humour": 9.317291259765625, "nr": 7.518736839294434, "forgiveness": 8.957536697387695, "tam": 6.803591251373291, "undergone": 8.425849914550781, "martyr": 9.148591995239258, "pamela": 9.24917984008789, "myths": 7.8886399269104, "whore": 10.234525680541992, "counselor": 7.433315277099609, "hicks": 9.426223754882812, "290": 7.674433708190918, "heavens": 9.0181884765625, "battleship": 9.807766914367676, "electromagnetic": 7.3093342781066895, "##bbs": 9.653762817382812, "stellar": 8.65060806274414, "establishments": 8.5137300491333, "presley": 8.30815315246582, "hopped": 10.60365104675293, "##chin": 7.839498043060303, "temptation": 8.95228099822998, "90s": 8.088641166687012, "wills": 8.782341003417969, "nas": 6.875190258026123, "##yuan": 10.745351791381836, "nhs": 8.287715911865234, "##nya": 9.362343788146973, "seminars": 9.059146881103516, "##yev": 11.245733261108398, "adaptations": 8.244604110717773, "gong": 9.450372695922852, "asher": 9.93005657196045, "lex": 7.896208763122559, "indicator": 6.873548984527588, "sikh": 9.44606876373291, "tobago": 9.161433219909668, "cites": 9.119255065917969, "goin": 9.918508529663086, "##yte": 7.471331596374512, "satirical": 9.61234188079834, "##gies": 6.456691265106201, "characterised": 8.513166427612305, "correspond": 8.051753997802734, "bubbles": 7.727169990539551, "lure": 8.391854286193848, "participates": 8.778661727905273, "##vid": 7.397614002227783, "eruption": 7.67200231552124, "skate": 8.182019233703613, "therapeutic": 7.065899848937988, "1785": 9.484002113342285, "canals": 8.210322380065918, "wholesale": 7.307645797729492, "defaulted": 10.019922256469727, "sac": 6.323921203613281, "460": 7.850759983062744, "petit": 9.331233024597168, "##zzled": 10.256819725036621, "virgil": 9.675134658813477, "leak": 6.669506072998047, "ravens": 9.086749076843262, "256": 7.782028675079346, "portraying": 9.31226921081543, "##yx": 8.186477661132812, "ghetto": 9.49596881866455, "creators": 8.45997428894043, "dams": 8.537683486938477, "portray": 8.95403003692627, "vicente": 10.631366729736328, "##rington": 10.064085960388184, "fae": 8.94879150390625, "namesake": 8.835323333740234, "bounty": 8.705734252929688, "##arium": 9.296119689941406, "joachim": 10.714341163635254, "##ota": 7.420958042144775, "##iser": 8.259788513183594, "aforementioned": 8.946183204650879, "axle": 7.797878265380859, "snout": 8.880640983581543, "depended": 9.216788291931152, "dismantled": 10.351325035095215, "reuben": 9.740214347839355, "480": 7.4139909744262695, "##ibly": 8.93925952911377, "gallagher": 9.593915939331055, "##lau": 7.136422157287598, "##pd": 7.967037677764893, "earnest": 8.724343299865723, "##ieu": 9.398540496826172, "##iary": 9.064997673034668, "inflicted": 9.190943717956543, "objections": 9.399906158447266, "##llar": 7.885929107666016, "asa": 7.530262470245361, "gritted": 13.191643714904785, "##athy": 8.894564628601074, "jericho": 10.080150604248047, "##sea": 7.72128438949585, "##was": 8.739765167236328, "flick": 7.979511260986328, "underside": 7.971615314483643, "ceramics": 8.872540473937988, "undead": 10.080150604248047, "substituted": 8.441454887390137, "195": 7.9654083251953125, "eastward": 9.308518409729004, "undoubtedly": 8.511478424072266, "wheeled": 9.145407676696777, "chimney": 8.334653854370117, "##iche": 8.484299659729004, "guinness": 7.938418388366699, "cb": 7.200254440307617, "##ager": 8.729923248291016, "siding": 7.83519983291626, "##bell": 7.139982223510742, "traitor": 10.077454566955566, "baptiste": 10.132794380187988, "disguised": 9.584007263183594, "inauguration": 8.778661727905273, "149": 7.330857276916504, "tipperary": 11.056939125061035, "choreographer": 9.529637336730957, "perched": 9.44178295135498, "warmed": 8.575922966003418, "stationary": 7.908439636230469, "eco": 6.932989597320557, "##ike": 8.354640007019043, "##ntes": 8.644165992736816, "bacterial": 5.984659194946289, "##aurus": 8.533650398254395, "flores": 9.595577239990234, "phosphate": 6.8162055015563965, "##core": 8.683451652526855, "attacker": 9.448936462402344, "invaders": 8.639681816101074, "alvin": 9.488472938537598, "intersects": 9.46924114227295, "a1": 7.314416885375977, "indirectly": 7.8707051277160645, "immigrated": 8.0831298828125, "businessmen": 9.763538360595703, "cornelius": 9.71180248260498, "valves": 7.131458759307861, "narrated": 9.71180248260498, "pill": 6.979158878326416, "sober": 8.915398597717285, "ul": 5.8111419677734375, "nationale": 10.844606399536133, "monastic": 10.182367324829102, "applicants": 6.774861812591553, "scenery": 8.215327262878418, "##jack": 8.130776405334473, "161": 7.745820999145508, "motifs": 9.615729331970215, "constitutes": 7.644219398498535, "cpu": 7.591987609863281, "##osh": 8.606985092163086, "jurisdictions": 7.691127300262451, "sd": 6.78581428527832, "tuning": 8.37160587310791, "irritation": 6.668615341186523, "woven": 7.9374680519104, "##uddin": 10.2408447265625, "fertility": 7.322774887084961, "gao": 9.346667289733887, "##erie": 9.680550575256348, "antagonist": 7.576636791229248, "impatient": 9.79348087310791, "glacial": 8.792715072631836, "hides": 8.721564292907715, "boarded": 9.73829460144043, "denominations": 8.713274002075195, "interception": 10.432400703430176, "##jas": 9.689640998840332, "cookie": 7.558261871337891, "nicola": 9.367624282836914, "##tee": 8.034505844116211, "algebraic": 9.157135009765625, "marquess": 11.18689250946045, "bahn": 10.892093658447266, "parole": 8.458906173706055, "buyers": 6.992980003356934, "bait": 7.859803199768066, "turbines": 8.612567901611328, "paperwork": 7.798980712890625, "bestowed": 9.25862979888916, "natasha": 9.667960166931152, "renee": 9.380949020385742, "oceans": 7.046223163604736, "purchases": 6.833381175994873, "157": 7.844680309295654, "vaccine": 6.5398759841918945, "215": 7.76482629776001, "##tock": 7.940004825592041, "fixtures": 7.963456153869629, "playhouse": 9.871415138244629, "integrate": 7.620411396026611, "jai": 9.368948936462402, "oswald": 9.595577239990234, "intellectuals": 10.104742050170898, "##cky": 8.62257194519043, "booked": 7.99147367477417, "nests": 8.2783203125, "mortimer": 10.699189186096191, "##isi": 7.382773399353027, "obsession": 8.635854721069336, "sept": 6.4923295974731445, "##gler": 9.652002334594727, "##sum": 7.301590919494629, "440": 7.621796607971191, "scrutiny": 8.97347354888916, "simultaneous": 8.623828887939453, "squinted": 13.46927547454834, "##shin": 9.632838249206543, "collects": 7.506930351257324, "oven": 5.530059337615967, "shankar": 10.689214706420898, "penned": 9.286309242248535, "remarkably": 8.53537654876709, "##\u044f": 10.209641456604004, "slips": 8.623200416564941, "luggage": 7.996836185455322, "spectral": 9.082758903503418, "1786": 9.600577354431152, "collaborations": 10.05878734588623, "louie": 9.960719108581543, "consolidation": 8.532501220703125, "##ailed": 10.05878734588623, "##ivating": 8.00934886932373, "420": 7.624108791351318, "hoover": 8.282783508300781, "blackpool": 10.89819049835205, "harness": 7.797051906585693, "ignition": 7.552210807800293, "vest": 7.362786769866943, "tails": 7.784743309020996, "belmont": 9.167916297912598, "mongol": 9.434680938720703, "skinner": 9.657293319702148, "##nae": 8.978842735290527, "visually": 8.086065292358398, "mage": 8.025818824768066, "derry": 10.14423942565918, "##tism": 8.56281566619873, "##unce": 7.359227657318115, "stevie": 9.123394012451172, "transitional": 8.326676368713379, "##rdy": 8.996037483215332, "redskins": 9.832742691040039, "drying": 7.178076267242432, "prep": 6.231842041015625, "prospective": 7.397060394287109, "##21": 6.974070072174072, "annoyance": 9.171174049377441, "oversee": 8.178788185119629, "##loaded": 8.68411922454834, "fills": 7.7223052978515625, "##books": 7.62225866317749, "##iki": 8.822962760925293, "announces": 7.980502605438232, "fda": 6.468357563018799, "scowled": 12.974578857421875, "respects": 8.508110046386719, "prasad": 10.904325485229492, "mystic": 8.716719627380371, "tucson": 8.350802421569824, "##vale": 8.052108764648438, "revue": 10.38005256652832, "springer": 9.773420333862305, "bankrupt": 8.848625183105469, "1772": 9.75570297241211, "aristotle": 8.315521240234375, "salvatore": 10.2408447265625, "habsburg": 10.337265014648438, "##geny": 9.353169441223145, "dal": 7.938735485076904, "natal": 8.997864723205566, "nut": 6.347473621368408, "pod": 7.55609655380249, "chewing": 7.505490303039551, "darts": 9.918508529663086, "moroccan": 9.554855346679688, "walkover": 12.717859268188477, "rosario": 10.222005844116211, "lenin": 9.20209789276123, "punjabi": 9.608966827392578, "##\u00dfe": 10.99441909790039, "grossed": 9.405389785766602, "scattering": 9.253893852233887, "wired": 7.838636875152588, "invasive": 7.135001182556152, "hui": 9.50503921508789, "polynomial": 9.07482624053955, "corridors": 9.999795913696289, "wakes": 9.17444133758545, "gina": 9.50503921508789, "portrays": 9.010750770568848, "##cratic": 8.820662498474121, "arid": 8.089746475219727, "retreating": 10.483592987060547, "erich": 10.26978588104248, "irwin": 9.27418041229248, "sniper": 8.94879150390625, "##dha": 8.949663162231445, "linen": 8.128856658935547, "lindsey": 9.36366081237793, "maneuver": 8.230071067810059, "butch": 9.85189151763916, "shutting": 9.119255065917969, "socio": 7.9454169273376465, "bounce": 8.066057205200195, "commemorative": 9.353169441223145, "postseason": 9.147529602050781, "jeremiah": 9.534317016601562, "pines": 8.464255332946777, "275": 7.546839237213135, "mystical": 9.080769538879395, "beads": 8.1844482421875, "bp": 6.963132381439209, "abbas": 10.306334495544434, "furnace": 7.42797327041626, "bidding": 8.646738052368164, "consulted": 8.95228099822998, "assaulted": 9.989882469177246, "empirical": 8.076921463012695, "rubble": 9.836966514587402, "enclosure": 7.953752040863037, "sob": 8.552803993225098, "weakly": 9.789436340332031, "cancel": 6.507675647735596, "polly": 9.88686752319336, "yielded": 9.204343795776367, "##emann": 9.955940246582031, "curly": 8.47612476348877, "prediction": 8.262414932250977, "battered": 9.562868118286133, "70s": 7.88412618637085, "vhs": 9.433265686035156, "jacqueline": 9.29735279083252, "render": 7.839498043060303, "sails": 9.169000625610352, "barked": 11.345816612243652, "detailing": 8.379951477050781, "grayson": 9.382290840148926, "riga": 10.266529083251953, "sloane": 10.827364921569824, "raging": 9.389029502868652, "##yah": 8.55573844909668, "herbs": 6.7968878746032715, "bravo": 8.935815811157227, "##athlon": 9.333788871765137, "alloy": 7.471331596374512, "giggle": 10.788253784179688, "imminent": 8.756147384643555, "suffers": 8.174363136291504, "assumptions": 8.090853691101074, "waltz": 9.639764785766602, "##itate": 7.903835773468018, "accomplishments": 8.381431579589844, "##ited": 8.028590202331543, "bathing": 8.295841217041016, "remixed": 10.766572952270508, "deception": 9.086749076843262, "prefix": 7.007994651794434, "##emia": 6.259372711181641, "deepest": 7.810629367828369, "##tier": 8.942715644836426, "##eis": 8.700965881347656, "balkan": 9.466315269470215, "frogs": 8.117417335510254, "##rong": 9.828536033630371, "slab": 7.586175441741943, "##pate": 7.413240909576416, "philosophers": 8.614436149597168, "peterborough": 10.719443321228027, "grains": 6.360343933105469, "imports": 8.104608535766602, "dickinson": 9.232852935791016, "rwanda": 9.179912567138672, "##atics": 8.97169017791748, "1774": 9.084752082824707, "dirk": 9.90030574798584, "lan": 6.770711421966553, "tablets": 6.5030622482299805, "##rove": 8.553390502929688, "clone": 8.207829475402832, "##rice": 8.123501777648926, "caretaker": 9.29488754272461, "hostilities": 9.830636978149414, "mclean": 9.397175788879395, "##gre": 7.098210334777832, "regimental": 10.77194881439209, "treasures": 8.862905502319336, "norms": 8.233471870422363, "impose": 7.714419364929199, "tsar": 9.328682899475098, "tango": 9.622537612915039, "diplomacy": 8.941850662231445, "variously": 8.910358428955078, "complain": 7.949896335601807, "192": 7.897120952606201, "recognise": 8.738353729248047, "arrests": 8.290867805480957, "1779": 9.805713653564453, "celestial": 8.256298065185547, "pulitzer": 9.240982055664062, "##dus": 9.005208015441895, "bing": 7.534910202026367, "libretto": 10.72972583770752, "##moor": 9.73829460144043, "adele": 9.238653182983398, "splash": 7.705589771270752, "##rite": 8.315983772277832, "expectation": 8.434142112731934, "lds": 9.898054122924805, "confronts": 10.436246871948242, "##izer": 7.554152011871338, "spontaneous": 7.8586320877075195, "harmful": 6.433408260345459, "wedge": 7.646347522735596, "entrepreneurs": 8.431024551391602, "buyer": 6.670933246612549, "##ope": 7.57729959487915, "bilingual": 8.955781936645508, "translate": 7.531105995178223, "rugged": 7.958915710449219, "conner": 9.393095016479492, "circulated": 8.803197860717773, "uae": 8.623200416564941, "eaton": 9.242149353027344, "##gra": 6.825537204742432, "##zzle": 7.838636875152588, "lingered": 11.086031913757324, "lockheed": 9.558052062988281, "vishnu": 9.830636978149414, "reelection": 9.761573791503906, "alonso": 10.679337501525879, "##oom": 8.862905502319336, "joints": 6.082828998565674, "yankee": 8.95403003692627, "headline": 8.367216110229492, "cooperate": 8.914556503295898, "heinz": 9.503521919250488, "laureate": 9.575823783874512, "invading": 8.665581703186035, "##sford": 9.691469192504883, "echoes": 9.436097145080566, "scandinavian": 8.13000774383545, "##dham": 9.286309242248535, "hugging": 9.948814392089844, "vitamin": 5.115269184112549, "salute": 9.181010246276855, "micah": 10.590076446533203, "hind": 7.23745584487915, "trader": 8.248054504394531, "##sper": 7.5366058349609375, "radioactive": 7.382409572601318, "##ndra": 9.761573791503906, "militants": 10.508133888244629, "poisoned": 9.51266098022461, "ratified": 7.778780460357666, "remark": 9.005208015441895, "campeonato": 13.132802963256836, "deprived": 8.733428001403809, "wander": 8.592857360839844, "prop": 6.0391845703125, "##dong": 9.529637336730957, "outlook": 6.421722888946533, "##tani": 9.145407676696777, "##rix": 8.580732345581055, "##eye": 7.718736171722412, "chiang": 10.007296562194824, "darcy": 10.188364028930664, "##oping": 8.281442642211914, "mandolin": 10.064085960388184, "spice": 7.058376789093018, "statesman": 8.951407432556152, "babylon": 8.774264335632324, "182": 8.381925582885742, "walled": 8.756866455078125, "forgetting": 9.417838096618652, "afro": 8.988761901855469, "##cap": 7.114070415496826, "158": 7.6151204109191895, "giorgio": 10.289556503295898, "buffer": 7.5976080894470215, "##polis": 8.965473175048828, "planetary": 8.553977012634277, "##gis": 7.836058139801025, "overlap": 7.534063816070557, "terminals": 7.764293670654297, "kinda": 8.515421867370605, "centenary": 10.417162895202637, "##bir": 8.811511993408203, "arising": 7.887735843658447, "manipulate": 8.173160552978516, "elm": 8.01241683959961, "ke": 5.495940685272217, "1770": 9.110005378723145, "ak": 6.724839210510254, "##tad": 9.2374906539917, "chrysler": 8.288616180419922, "mapped": 8.795699119567871, "moose": 8.444079399108887, "pomeranian": 9.759613037109375, "quad": 6.838855743408203, "macarthur": 9.603924751281738, "assemblies": 8.69351863861084, "shoreline": 8.148609161376953, "recalls": 8.753995895385742, "stratford": 9.245657920837402, "##rted": 9.502006530761719, "noticeable": 7.473121643066406, "##evic": 8.718792915344238, "imp": 5.590695381164551, "##rita": 6.661340236663818, "##sque": 8.990575790405273, "accustomed": 8.884716033935547, "supplying": 8.060311317443848, "tents": 9.374263763427734, "disgusted": 10.636061668395996, "vogue": 9.21337890625, "sipped": 11.28998851776123, "filters": 7.279041767120361, "khz": 9.159281730651855, "reno": 7.735674858093262, "selecting": 6.9282450675964355, "luftwaffe": 11.064133644104004, "mcmahon": 9.841207504272461, "tyne": 10.007296562194824, "masterpiece": 8.496965408325195, "carriages": 10.35487174987793, "collided": 10.048274993896484, "dunes": 8.646738052368164, "exercised": 8.521082878112793, "flare": 7.651806831359863, "remembers": 8.95228099822998, "muzzle": 8.724343299865723, "##mobile": 8.392851829528809, "heck": 7.98116397857666, "##rson": 9.600577354431152, "burgess": 9.539019584655762, "lunged": 12.796330451965332, "middleton": 9.042753219604492, "boycott": 8.984240531921387, "bilateral": 7.913992881774902, "##sity": 9.29858684539795, "hazardous": 7.247254848480225, "lumpur": 9.67333698272705, "multiplayer": 8.583749771118164, "spotlight": 8.108734130859375, "jackets": 8.632040977478027, "goldman": 8.833769798278809, "liege": 10.838826179504395, "porcelain": 7.974240303039551, "rag": 7.601222038269043, "waterford": 9.73829460144043, "benz": 6.884649753570557, "attracts": 8.16636848449707, "hopeful": 9.032286643981934, "battling": 8.757585525512695, "ottomans": 10.467560768127441, "kensington": 9.584007263183594, "baked": 6.744433403015137, "hymns": 9.989882469177246, "cheyenne": 9.207722663879395, "lattice": 8.748279571533203, "levine": 9.244487762451172, "borrow": 6.771697998046875, "polymer": 6.827205657958984, "clashes": 10.209641456604004, "michaels": 9.422021865844727, "monitored": 7.895297527313232, "commitments": 9.02099323272705, "denounced": 10.344270706176758, "##25": 6.969127178192139, "##von": 8.676795959472656, "cavity": 6.396852970123291, "##oney": 9.494464874267578, "hobby": 8.007988929748535, "akin": 7.738266468048096, "##holders": 7.976213455200195, "futures": 8.162394523620605, "intricate": 8.413029670715332, "cornish": 9.25035572052002, "patty": 8.501964569091797, "##oned": 10.074767112731934, "illegally": 8.803197860717773, "dolphin": 8.316446304321289, "##lag": 8.455179214477539, "barlow": 10.296234130859375, "yellowish": 7.981494903564453, "maddie": 9.416447639465332, "apologized": 10.60365104675293, "luton": 10.57668399810791, "plagued": 9.152853965759277, "##puram": 10.95481014251709, "nana": 9.447501182556152, "##rds": 8.264609336853027, "sway": 8.613190650939941, "fanny": 10.179381370544434, "\u0142odz": 12.545016288757324, "##rino": 8.346979141235352, "psi": 7.526055812835693, "suspicions": 10.228246688842773, "hanged": 9.951184272766113, "##eding": 7.36689567565918, "initiate": 7.496280193328857, "charlton": 10.030139923095703, "##por": 6.4458723068237305, "nak": 8.81075382232666, "competent": 8.129623413085938, "235": 7.921756744384766, "analytical": 7.933359146118164, "annex": 8.726431846618652, "wardrobe": 8.743304252624512, "reservations": 7.622951984405518, "##rma": 7.980172157287598, "sect": 9.038934707641602, "162": 8.126558303833008, "fairfax": 8.800191879272461, "hedge": 7.807009220123291, "piled": 9.58072566986084, "buckingham": 9.301060676574707, "uneven": 7.891056060791016, "bauer": 9.66439151763916, "simplicity": 8.126940727233887, "snyder": 9.156063079833984, "interpret": 7.323460102081299, "accountability": 8.080934524536133, "donors": 8.12579345703125, "moderately": 7.745820999145508, "byrd": 9.779396057128906, "continents": 7.549843788146973, "##cite": 7.669092178344727, "##max": 8.089377403259277, "disciple": 9.967930793762207, "hr": 5.87816047668457, "jamaican": 8.653843879699707, "ping": 8.034854888916016, "nominees": 9.160356521606445, "##uss": 7.516031742095947, "mongolian": 9.506559371948242, "diver": 7.6082611083984375, "attackers": 9.927736282348633, "eagerly": 9.61912727355957, "ideological": 9.266973495483398, "pillows": 8.65060806274414, "miracles": 9.494464874267578, "apartheid": 9.556452751159668, "revolver": 9.492963790893555, "sulfur": 7.157830715179443, "clinics": 7.549414157867432, "moran": 9.726855278015137, "163": 7.837490081787109, "##enko": 10.734908103942871, "ile": 7.717718601226807, "katy": 8.951407432556152, "rhetoric": 8.16358470916748, "##icated": 7.983151435852051, "chronology": 9.443209648132324, "recycling": 7.548340320587158, "##hrer": 9.97276782989502, "elongated": 8.25499153137207, "mughal": 9.783400535583496, "pascal": 8.997864723205566, "profiles": 7.4022393226623535, "vibration": 7.752378940582275, "databases": 7.76802921295166, "domination": 9.204343795776367, "##fare": 7.973255157470703, "##rant": 8.024090766906738, "matthias": 10.499886512756348, "digest": 5.303001880645752, "rehearsal": 9.269370079040527, "polling": 9.084752082824707, "weiss": 9.045626640319824, "initiation": 8.09900951385498, "reeves": 9.296119689941406, "clinging": 9.90030574798584, "flourished": 8.84312629699707, "impress": 8.507550239562988, "ngo": 9.51266098022461, "##hoff": 9.691469192504883, "##ume": 6.780820846557617, "buckley": 9.934713363647461, "symposium": 9.730653762817383, "rhythms": 8.353199005126953, "weed": 7.236670017242432, "emphasize": 8.153314590454102, "transforming": 8.470712661743164, "##taking": 8.064258575439453, "##gence": 8.594078063964844, "##yman": 9.36366081237793, "accountant": 7.947334289550781, "analyze": 6.8353776931762695, "flicker": 9.920807838439941, "foil": 6.672898292541504, "priesthood": 10.567853927612305, "voluntarily": 8.490887641906738, "decreases": 6.777836799621582, "##80": 6.919166564941406, "##hya": 9.854042053222656, "slater": 9.769455909729004, "sv": 7.5875139236450195, "charting": 9.229388236999512, "mcgill": 9.832742691040039, "##lde": 8.193817138671875, "moreno": 9.939391136169434, "##iu": 8.408453941345215, "besieged": 10.369182586669922, "zur": 9.805713653564453, "robes": 9.413671493530273, "##phic": 7.656100273132324, "admitting": 9.269370079040527, "api": 7.132166385650635, "deported": 9.898054122924805, "turmoil": 9.404016494750977, "peyton": 9.14434814453125, "earthquakes": 7.621565341949463, "##ares": 9.402644157409668, "nationalists": 10.299589157104492, "beau": 7.932098388671875, "clair": 8.832993507385254, "brethren": 9.907093048095703, "interrupt": 8.495304107666016, "welch": 9.614034652709961, "curated": 9.484002113342285, "galerie": 12.15555191040039, "requesting": 7.871594429016113, "164": 8.116280555725098, "##ested": 7.698581695556641, "impending": 8.979740142822266, "steward": 8.655141830444336, "viper": 9.121322631835938, "##vina": 9.095785140991211, "complaining": 8.96635913848877, "beautifully": 8.222883224487305, "brandy": 8.691496849060059, "foam": 6.967325210571289, "nl": 7.457126140594482, "1660": 9.598907470703125, "##cake": 7.785015106201172, "alessandro": 10.326848030090332, "punches": 9.713671684265137, "laced": 9.675134658813477, "explanations": 8.0535306930542, "##lim": 7.247254848480225, "attribute": 7.791836738586426, "clit": 9.153923034667969, "reggie": 9.832742691040039, "discomfort": 6.482006549835205, "##cards": 7.78964900970459, "smoothed": 10.432400703430176, "whales": 7.7760820388793945, "##cene": 9.3518648147583, "adler": 9.57419490814209, "countered": 10.650279998779297, "duffy": 9.963117599487305, "disciplinary": 8.855740547180176, "widening": 9.139068603515625, "recipe": 5.9750895500183105, "reliance": 8.742595672607422, "conducts": 8.041158676147461, "goats": 7.8400726318359375, "gradient": 7.777700424194336, "preaching": 9.862690925598145, "##shaw": 9.809823989868164, "matilda": 9.965520858764648, "quasi": 8.977945327758789, "striped": 8.390357971191406, "meridian": 8.262853622436523, "cannabis": 7.42873477935791, "cordoba": 10.014852523803711, "certificates": 7.374081611633301, "##agh": 9.275386810302734, "##tering": 8.862905502319336, "graffiti": 9.49596881866455, "hangs": 8.639681816101074, "pilgrims": 9.056234359741211, "repeats": 8.70436954498291, "##ych": 8.241166114807129, "revive": 9.125470161437988, "urine": 5.509984970092773, "etat": 10.107511520385742, "##hawk": 9.286309242248535, "fueled": 8.611946105957031, "belts": 7.971615314483643, "fuzzy": 8.728525161743164, "susceptible": 7.253307819366455, "##hang": 8.42430305480957, "mauritius": 9.370274543762207, "salle": 9.984962463378906, "sincere": 9.161433219909668, "beers": 8.147046089172363, "hooks": 8.521082878112793, "##cki": 8.574125289916992, "arbitration": 8.86530590057373, "entrusted": 9.587299346923828, "advise": 7.384593486785889, "sniffed": 11.001175880432129, "seminar": 8.858122825622559, "junk": 7.7195000648498535, "donnell": 9.622537612915039, "processors": 8.179998397827148, "principality": 10.3407621383667, "strapped": 9.799578666687012, "celia": 8.043972969055176, "mendoza": 10.319963455200195, "everton": 11.086031913757324, "fortunes": 9.450372695922852, "prejudice": 8.420188903808594, "starving": 9.359713554382324, "reassigned": 10.862151145935059, "steamer": 8.695544242858887, "##lund": 9.904826164245605, "tuck": 8.243313789367676, "evenly": 7.058508396148682, "foreman": 9.090754508972168, "##ffen": 9.175533294677734, "dans": 9.29858684539795, "375": 7.1643877029418945, "envisioned": 9.55325984954834, "slit": 8.76697826385498, "##xy": 6.845422267913818, "baseman": 9.593915939331055, "liberia": 9.306026458740234, "rosemary": 7.9592390060424805, "##weed": 7.763228416442871, "electrified": 10.59458065032959, "periodically": 7.876647472381592, "potassium": 6.203873634338379, "stride": 8.769158363342285, "contexts": 8.055310249328613, "sperm": 6.543954849243164, "slade": 10.77194881439209, "mariners": 9.394453048706055, "influx": 9.013533592224121, "bianca": 10.17343807220459, "subcommittee": 9.676937103271484, "##rane": 8.595911979675293, "spilling": 9.730653762817383, "icao": 8.662961959838867, "estuary": 9.039888381958008, "##nock": 9.537449836730957, "delivers": 6.987575531005859, "iphone": 5.917794227600098, "##ulata": 9.620831489562988, "isa": 8.08496379852295, "mira": 8.220778465270996, "bohemian": 9.457588195800781, "dessert": 7.315606594085693, "##sbury": 10.129953384399414, "welcoming": 8.456774711608887, "proudly": 8.27609634399414, "slowing": 8.133084297180176, "##chs": 8.439360618591309, "musee": 10.581128120422363, "ascension": 9.603924751281738, "russ": 8.628242492675781, "##vian": 9.230541229248047, "waits": 9.041797637939453, "##psy": 6.594415187835693, "africans": 8.722952842712402, "exploit": 8.464255332946777, "##morphic": 7.811187744140625, "gov": 6.296236515045166, "eccentric": 8.453585624694824, "crab": 7.313398361206055, "peck": 8.825268745422363, "##ull": 8.049271583557129, "entrances": 9.362343788146973, "formidable": 9.151786804199219, "marketplace": 7.319355010986328, "groom": 7.476311683654785, "bolted": 9.702508926391602, "metabolism": 6.359951496124268, "patton": 9.276594161987305, "robbins": 9.195390701293945, "courier": 8.791970252990723, "payload": 8.991483688354492, "endure": 8.580732345581055, "##ifier": 6.956697940826416, "andes": 8.217001914978027, "refrigerator": 6.203649520874023, "##pr": 6.014485836029053, "ornate": 9.391737937927246, "##uca": 7.964756965637207, "ruthless": 9.277803421020508, "illegitimate": 9.610652923583984, "masonry": 8.189732551574707, "strasbourg": 10.417162895202637, "bikes": 8.063179969787598, "adobe": 7.254907131195068, "##\u00b3": 9.884645462036133, "apples": 7.108248710632324, "quintet": 10.563467979431152, "willingly": 9.963117599487305, "niche": 8.093811988830566, "bakery": 8.397356986999512, "corpses": 10.203516006469727, "energetic": 8.057807922363281, "##cliffe": 10.440108299255371, "##sser": 8.785293579101562, "##ards": 8.682784080505371, "177": 8.260663986206055, "centimeters": 7.4541916847229, "centro": 8.541731834411621, "fuscous": 15.58953857421875, "cretaceous": 9.026623725891113, "rancho": 8.879015922546387, "##yde": 7.95729923248291, "andrei": 10.886032104492188, "telecom": 8.759744644165039, "tottenham": 10.533292770385742, "oasis": 8.685457229614258, "ordination": 10.027575492858887, "vulnerability": 8.764802932739258, "presiding": 9.286309242248535, "corey": 9.350563049316406, "cp": 6.233166217803955, "penguins": 8.611946105957031, "sims": 8.992392539978027, "##pis": 8.35128116607666, "malawi": 9.66974925994873, "piss": 9.73829460144043, "##48": 7.605985164642334, "correction": 7.614432334899902, "##cked": 8.816840171813965, "##ffle": 7.907824516296387, "##ryn": 7.224642276763916, "countdown": 8.701645851135254, "detectives": 9.236329078674316, "psychiatrist": 8.070027351379395, "psychedelic": 9.382290840148926, "dinosaurs": 8.067859649658203, "blouse": 9.346667289733887, "##get": 7.176891326904297, "choi": 10.096477508544922, "vowed": 9.904826164245605, "##oz": 6.9652862548828125, "randomly": 8.040806770324707, "##pol": 6.778134822845459, "49ers": 9.40952205657959, "scrub": 7.251073360443115, "blanche": 9.000612258911133, "bruins": 10.043060302734375, "dusseldorf": 10.483592987060547, "##using": 8.229222297668457, "unwanted": 7.262618541717529, "##ums": 7.748963356018066, "212": 7.574431419372559, "dominique": 10.167530059814453, "elevations": 8.145484924316406, "headlights": 9.043709754943848, "om": 5.602215766906738, "laguna": 9.359713554382324, "##oga": 7.683482646942139, "1750": 8.794205665588379, "famously": 8.538260459899902, "ignorance": 8.964588165283203, "shrewsbury": 10.35487174987793, "##aine": 7.772047519683838, "ajax": 9.884645462036133, "breuning": 14.123201370239258, "che": 6.117218971252441, "confederacy": 8.578324317932129, "greco": 9.730653762817383, "overhaul": 8.806968688964844, "##screen": 8.071112632751465, "paz": 9.603924751281738, "skirts": 8.897041320800781, "disagreement": 8.862905502319336, "cruelty": 9.021928787231445, "jagged": 9.4446382522583, "phoebe": 9.610652923583984, "shifter": 10.040462493896484, "hovered": 10.655064582824707, "viruses": 6.268223762512207, "##wes": 9.020057678222656, "mandy": 9.79348087310791, "##lined": 8.88880729675293, "##gc": 8.415069580078125, "landlord": 6.996063709259033, "squirrel": 8.43518352508545, "dashed": 9.849745750427246, "##\u03b9": 7.860389709472656, "ornamental": 7.9454169273376465, "gag": 8.582541465759277, "wally": 10.004790306091309, "grange": 9.0610933303833, "literal": 7.788829326629639, "spurs": 8.255426406860352, "undisclosed": 9.984962463378906, "proceeding": 7.985806941986084, "yin": 9.130678176879883, "##text": 8.350802421569824, "billie": 9.467777252197266, "orphan": 9.016324043273926, "spanned": 8.863704681396484, "humidity": 6.430035591125488, "indy": 9.524978637695312, "weighted": 7.566314220428467, "presentations": 8.185665130615234, "explosions": 8.995124816894531, "lucian": 10.572258949279785, "##tary": 8.505311965942383, "vaughn": 9.671541213989258, "hindus": 8.951407432556152, "##anga": 9.484002113342285, "##hell": 7.391724586486816, "psycho": 6.697064399719238, "171": 8.322478294372559, "daytona": 8.772802352905273, "protects": 6.667814254760742, "efficiently": 7.255387306213379, "rematch": 10.420949935913086, "sly": 9.453252792358398, "tandem": 8.741179466247559, "##oya": 8.37111759185791, "rebranded": 10.037872314453125, "impaired": 7.392458915710449, "hee": 8.572331428527832, "metropolis": 8.97347354888916, "peach": 7.4691481590271, "godfrey": 10.362001419067383, "diaspora": 9.622537612915039, "ethnicity": 7.673704147338867, "prosperous": 8.844694137573242, "gleaming": 10.337265014648438, "dar": 7.291082382202148, "grossing": 9.105921745300293, "playback": 8.559861183166504, "##rden": 9.147529602050781, "stripe": 8.337484359741211, "pistols": 9.659063339233398, "##tain": 7.260202407836914, "births": 7.6558613777160645, "labelled": 8.95053482055664, "##cating": 8.236884117126465, "172": 8.326676368713379, "rudy": 9.40676498413086, "alba": 8.361876487731934, "##onne": 8.357528686523438, "aquarium": 7.616038799285889, "hostility": 9.3479642868042, "##gb": 6.90271520614624, "##tase": 8.03276252746582, "shudder": 10.550423622131348, "sumatra": 8.98063850402832, "hardest": 8.061027526855469, "lakers": 8.78381633758545, "consonant": 8.728525161743164, "creeping": 9.001529693603516, "demos": 9.236329078674316, "homicide": 8.626348495483398, "capsule": 6.728235721588135, "zeke": 11.007978439331055, "liberties": 8.748991966247559, "expulsion": 9.362343788146973, "pueblo": 8.895389556884766, "##comb": 8.608842849731445, "trait": 7.354266166687012, "transporting": 8.130776405334473, "##ddin": 9.370274543762207, "##neck": 8.453055381774902, "##yna": 7.447378635406494, "depart": 8.198740005493164, "gregg": 9.344078063964844, "mold": 6.431088447570801, "ledge": 9.316032409667969, "hangar": 9.997308731079102, "oldham": 10.862151145935059, "playboy": 9.429035186767578, "termination": 7.5875139236450195, "analysts": 7.504873752593994, "gmbh": 9.629392623901367, "romero": 10.31653881072998, "##itic": 7.56282377243042, "insist": 8.81075382232666, "cradle": 8.71741008758545, "filthy": 9.994827270507812, "brightness": 8.169958114624023, "slash": 8.378474235534668, "shootout": 10.05089282989502, "deposed": 10.33030891418457, "bordering": 8.534801483154297, "##truct": 7.269252777099609, "isis": 8.81607723236084, "microwave": 6.834746837615967, "tumbled": 9.977627754211426, "sheltered": 9.027565002441406, "cathy": 9.614034652709961, "werewolves": 10.572258949279785, "messy": 8.59224796295166, "andersen": 9.433265686035156, "convex": 8.766252517700195, "clapped": 12.015321731567383, "clinched": 10.862151145935059, "satire": 9.302299499511719, "wasting": 8.229646682739258, "edo": 9.317291259765625, "vc": 7.8306355476379395, "rufus": 9.779396057128906, "##jak": 9.975194931030273, "mont": 7.476311683654785, "##etti": 8.816840171813965, "poznan": 12.073030471801758, "##keeping": 7.940322399139404, "restructuring": 9.219067573547363, "transverse": 7.8269429206848145, "##rland": 9.82643985748291, "azerbaijani": 10.59458065032959, "slovene": 10.655064582824707, "gestures": 8.823731422424316, "roommate": 9.038934707641602, "choking": 8.727827072143555, "shear": 7.819596767425537, "##quist": 8.64931583404541, "vanguard": 9.088749885559082, "oblivious": 10.483592987060547, "##hiro": 10.541821479797363, "disagreed": 10.030139923095703, "baptism": 9.062067985534668, "##lich": 9.205469131469727, "coliseum": 9.556452751159668, "##aceae": 9.051399230957031, "salvage": 8.61693286895752, "societe": 10.83307933807373, "cory": 8.579527854919434, "locke": 8.861309051513672, "relocation": 8.698251724243164, "relying": 8.61880874633789, "versailles": 8.461042404174805, "ahl": 9.841207504272461, "swelling": 5.60981559753418, "##elo": 7.041428565979004, "cheerful": 8.924704551696777, "##word": 7.327237606048584, "##edes": 9.198739051818848, "gin": 7.155220031738281, "sarajevo": 10.3407621383667, "obstacle": 8.741887092590332, "diverted": 9.700660705566406, "##nac": 8.277874946594238, "messed": 9.72307014465332, "thoroughbred": 9.265777587890625, "fluttered": 12.293702125549316, "utrecht": 10.6082181930542, "chewed": 9.088749885559082, "acquaintance": 9.740214347839355, "assassins": 10.222005844116211, "dispatch": 8.448293685913086, "mirza": 11.446404457092285, "##wart": 8.459440231323242, "nike": 8.04045581817627, "salzburg": 10.215805053710938, "swell": 7.52857780456543, "yen": 8.812272071838379, "##gee": 8.322943687438965, "idle": 8.049980163574219, "ligue": 11.534859657287598, "samson": 10.161656379699707, "##nds": 7.400941848754883, "##igh": 9.008899688720703, "playful": 8.6416015625, "spawned": 8.95053482055664, "##cise": 7.393010139465332, "tease": 9.288752555847168, "##case": 7.879034519195557, "burgundy": 9.048508644104004, "##bot": 7.563913345336914, "stirring": 7.471729278564453, "skeptical": 9.240982055664062, "interceptions": 11.064133644104004, "marathi": 10.096477508544922, "##dies": 8.001890182495117, "bedrooms": 7.799532413482666, "aroused": 9.532754898071289, "pinch": 7.46855354309082, "##lik": 9.47364616394043, "preferences": 7.331202507019043, "tattoos": 8.190140724182129, "buster": 9.23516845703125, "digitally": 9.006129264831543, "projecting": 8.878204345703125, "rust": 7.200709342956543, "##ital": 6.640260219573975, "kitten": 7.518945217132568, "priorities": 8.327143669128418, "addison": 8.566967964172363, "pseudo": 7.327926158905029, "##guard": 8.265488624572754, "dusk": 8.685457229614258, "icons": 7.862443923950195, "sermon": 9.809823989868164, "##psis": 9.146468162536621, "##iba": 8.514857292175293, "bt": 7.090577602386475, "##lift": 7.703582763671875, "##xt": 7.594681739807129, "ju": 6.4312286376953125, "truce": 10.306334495544434, "rink": 9.194276809692383, "##dah": 9.107961654663086, "##wy": 7.512712478637695, "defects": 7.111987590789795, "psychiatry": 8.499739646911621, "offences": 9.508081436157227, "calculate": 5.559756278991699, "glucose": 5.797336578369141, "##iful": 8.208244323730469, "##rized": 9.09982681274414, "##unda": 7.5116777420043945, "francaise": 10.326848030090332, "##hari": 7.196926593780518, "richest": 7.574431419372559, "warwickshire": 10.247204780578613, "carly": 9.198739051818848, "1763": 9.40952205657959, "purity": 7.888036727905273, "redemption": 8.477754592895508, "lending": 7.783385276794434, "##cious": 8.32620906829834, "muse": 9.111028671264648, "bruises": 8.611946105957031, "cerebral": 7.193759918212891, "aero": 6.6538543701171875, "carving": 8.544633865356445, "##name": 6.586591720581055, "preface": 9.44035816192627, "terminology": 7.337614059448242, "invade": 7.882326126098633, "monty": 9.891326904296875, "##int": 5.909632205963135, "anarchist": 10.222005844116211, "blurred": 7.817909240722656, "##iled": 8.37503433227539, "rossi": 9.520341873168945, "treats": 7.24598503112793, "guts": 9.25744342803955, "shu": 7.359050273895264, "foothills": 8.635217666625977, "ballads": 9.75765609741211, "undertaking": 8.619434356689453, "premise": 8.108734130859375, "cecilia": 10.138500213623047, "affiliates": 8.350802421569824, "blasted": 9.78139591217041, "conditional": 8.1373291015625, "wilder": 9.158207893371582, "minors": 8.146265029907227, "drone": 8.707100868225098, "rudolph": 9.632838249206543, "buffy": 10.191375732421875, "swallowing": 7.286281585693359, "horton": 8.974366188049316, "attested": 8.703006744384766, "##hop": 7.642567157745361, "rutherford": 8.861309051513672, "howell": 9.427628517150879, "primetime": 9.048508644104004, "livery": 10.22512149810791, "penal": 8.55868148803711, "##bis": 7.882925987243652, "minimize": 6.989782810211182, "hydro": 5.479999542236328, "wrecked": 10.110289573669434, "wrought": 9.14434814453125, "palazzo": 10.188364028930664, "##gling": 8.796445846557617, "cans": 7.7161946296691895, "vernacular": 9.10084056854248, "friedman": 9.508081436157227, "nobleman": 10.027575492858887, "shale": 8.40339469909668, "walnut": 7.5859527587890625, "danielle": 9.13381576538086, "##ection": 7.756863594055176, "##tley": 9.111028671264648, "sears": 8.228375434875488, "##kumar": 10.524836540222168, "chords": 8.363329887390137, "lend": 6.26334285736084, "flipping": 8.95228099822998, "streamed": 9.592257499694824, "por": 6.509192943572998, "dracula": 9.744063377380371, "gallons": 6.621737003326416, "sacrifices": 9.44606876373291, "gamble": 8.526776313781738, "orphanage": 10.2313814163208, "##iman": 9.382290840148926, "mckenzie": 10.0720853805542, "##gible": 8.536529541015625, "boxers": 9.457588195800781, "daly": 9.423420906066895, "##balls": 8.236456871032715, "##\u0627\u0646": 10.080150604248047, "208": 7.810629367828369, "##ific": 7.808957099914551, "##rative": 7.825809001922607, "##iq": 8.65904426574707, "exploited": 9.316032409667969, "slated": 8.814553260803223, "##uity": 7.433315277099609, "circling": 9.783400535583496, "hillary": 7.893477439880371, "pinched": 8.297201156616211, "goldberg": 9.075814247131348, "provost": 10.045663833618164, "campaigning": 9.761573791503906, "lim": 8.94879150390625, "piles": 8.62761116027832, "ironically": 8.794205665588379, "jong": 9.71180248260498, "mohan": 10.191375732421875, "successors": 9.75570297241211, "usaf": 9.634565353393555, "##tem": 7.104524612426758, "##ught": 8.466940879821777, "autobiographical": 9.769455909729004, "haute": 9.486980438232422, "preserves": 8.60266399383545, "##ending": 8.08056926727295, "acquitted": 9.636295318603516, "comparisons": 7.758715629577637, "203": 7.566314220428467, "hydroelectric": 9.0610933303833, "gangs": 8.908683776855469, "cypriot": 10.626693725585938, "torpedoes": 10.967839241027832, "rushes": 9.55965518951416, "chrome": 7.048433780670166, "derive": 8.033110618591309, "bumps": 7.394481182098389, "instability": 8.25760555267334, "fiat": 9.033233642578125, "pets": 6.664084434509277, "##mbe": 8.98604679107666, "silas": 10.222005844116211, "dye": 6.9780659675598145, "reckless": 8.600817680358887, "settler": 9.457588195800781, "##itation": 8.298563957214355, "info": 5.6726579666137695, "heats": 8.157647132873535, "##writing": 8.214909553527832, "176": 8.306319236755371, "canonical": 9.426223754882812, "maltese": 9.253893852233887, "fins": 8.447765350341797, "mushroom": 7.9374680519104, "stacy": 9.243317604064941, "aspen": 8.837657928466797, "avid": 8.52849006652832, "##kur": 8.856534004211426, "##loading": 8.110615730285645, "vickers": 10.916709899902344, "gaston": 9.602249145507812, "hillside": 9.068917274475098, "statutes": 7.480313777923584, "wilde": 8.877392768859863, "gail": 9.333788871765137, "kung": 9.617426872253418, "sabine": 9.9093656539917, "comfortably": 8.037651062011719, "motorcycles": 8.299017906188965, "##rgo": 8.085330963134766, "169": 7.988802909851074, "pneumonia": 6.887970447540283, "fetch": 8.530780792236328, "##sonic": 8.521082878112793, "axel": 9.878008842468262, "faintly": 10.640778541564941, "parallels": 9.112053871154785, "##oop": 8.311369895935059, "mclaren": 10.21271800994873, "spouse": 6.402637481689453, "compton": 9.472175598144531, "interdisciplinary": 8.889628410339355, "miner": 9.091758728027344, "##eni": 7.305623531341553, "181": 8.461042404174805, "clamped": 10.282922744750977, "##chal": 8.850991249084473, "##llah": 9.891326904296875, "separates": 7.4186930656433105, "versa": 7.133724212646484, "##mler": 9.367624282836914, "scarborough": 10.05614948272705, "labrador": 8.389860153198242, "##lity": 8.04221248626709, "##osing": 7.927698135375977, "rutgers": 9.37826919555664, "hurdles": 9.726855278015137, "como": 8.29810905456543, "166": 8.130776405334473, "burt": 9.126508712768555, "divers": 8.241595268249512, "##100": 7.662815570831299, "wichita": 8.745433807373047, "cade": 9.91392707824707, "coincided": 9.932381629943848, "##erson": 8.526776313781738, "bruised": 8.994213104248047, "mla": 8.049625396728516, "##pper": 8.413538932800293, "vineyard": 8.875772476196289, "##ili": 6.241147994995117, "##brush": 7.962806224822998, "notch": 7.721539497375488, "mentioning": 9.20209789276123, "jase": 11.768170356750488, "hearted": 9.157135009765625, "kits": 7.311872482299805, "doe": 8.090853691101074, "##acle": 8.05246353149414, "pomerania": 11.394845962524414, "##ady": 9.29735279083252, "ronan": 10.424753189086914, "seizure": 7.560431480407715, "pavel": 10.850419998168945, "problematic": 8.182827949523926, "##zaki": 10.402153015136719, "domenico": 11.001175880432129, "##ulin": 7.570913314819336, "catering": 8.400874137878418, "penelope": 9.907093048095703, "dependence": 7.866861343383789, "parental": 7.807287216186523, "emilio": 10.004790306091309, "ministerial": 10.383702278137207, "atkinson": 9.79145622253418, "##bolic": 8.043268203735352, "clarkson": 9.732558250427246, "chargers": 8.949663162231445, "colby": 9.849745750427246, "grill": 6.290119647979736, "peeked": 12.545016288757324, "arises": 7.5281572341918945, "summon": 8.900354385375977, "##aged": 8.572929382324219, "fools": 9.629392623901367, "##grapher": 8.59836196899414, "faculties": 10.0720853805542, "qaeda": 9.759613037109375, "##vial": 9.113079071044922, "garner": 8.680118560791016, "refurbished": 9.264582633972168, "##hwa": 8.136556625366211, "geelong": 11.131322860717773, "disasters": 8.333711624145508, "nudged": 12.113439559936523, "bs": 6.867556095123291, "shareholder": 8.322943687438965, "lori": 8.59836196899414, "algae": 6.966245174407959, "reinstated": 9.787420272827148, "rot": 6.606977462768555, "##ades": 8.746855735778809, "##nous": 7.367969989776611, "invites": 8.615683555603027, "stainless": 7.214293003082275, "183": 8.243313789367676, "inclusive": 7.582393646240234, "##itude": 8.36575698852539, "diocesan": 11.326858520507812, "til": 7.762962341308594, "##icz": 10.626693725585938, "denomination": 8.832993507385254, "##xa": 6.4811201095581055, "benton": 8.600203514099121, "floral": 8.18729019165039, "registers": 8.23091983795166, "##ider": 7.072545528411865, "##erman": 9.09477710723877, "##kell": 9.420625686645508, "absurd": 8.976154327392578, "brunei": 9.726855278015137, "guangzhou": 9.83485221862793, "hitter": 9.039888381958008, "retaliation": 9.430442810058594, "##uled": 9.625959396362305, "##eve": 7.973911762237549, "blanc": 8.347455978393555, "nh": 7.307645797729492, "consistency": 7.214447021484375, "contamination": 7.717718601226807, "##eres": 8.041861534118652, "##rner": 9.436097145080566, "dire": 8.791970252990723, "palermo": 10.164588928222656, "broadcasters": 9.977627754211426, "diaries": 9.044668197631836, "inspire": 7.767761707305908, "vols": 10.004790306091309, "brewer": 8.322012901306152, "tightening": 8.441454887390137, "ky": 6.925248146057129, "mixtape": 9.602249145507812, "hormone": 5.707291603088379, "##tok": 8.169159889221191, "stokes": 9.81188678741455, "##color": 8.229646682739258, "##dly": 9.124431610107422, "##ssi": 7.225885391235352, "pg": 7.660892486572266, "##ometer": 6.560760021209717, "##lington": 10.2408447265625, "sanitation": 8.62508773803711, "##tility": 7.305118560791016, "intercontinental": 9.261007308959961, "apps": 6.345666885375977, "##adt": 10.398435592651367, "\u00b9\u2044\u2082": 15.58953857421875, "cylinders": 8.25935173034668, "economies": 8.048916816711426, "favourable": 9.655527114868164, "unison": 9.951184272766113, "croix": 9.66617488861084, "gertrude": 9.878008842468262, "odyssey": 8.685457229614258, "vanity": 8.4028902053833, "dangling": 9.91392707824707, "##logists": 7.2980756759643555, "upgrades": 8.097149848937988, "dice": 7.935253620147705, "middleweight": 10.664703369140625, "practitioner": 7.178966045379639, "##ight": 8.056023597717285, "206": 7.808121681213379, "henrik": 10.247204780578613, "parlor": 9.531194686889648, "orion": 9.117192268371582, "angered": 10.061432838439941, "lac": 6.160304069519043, "python": 7.9425482749938965, "blurted": 13.024589538574219, "##rri": 7.250117301940918, "sensual": 9.37559700012207, "intends": 8.789739608764648, "swings": 8.066778182983398, "angled": 8.848625183105469, "##phs": 8.285920143127441, "husky": 9.126508712768555, "attain": 7.611913681030273, "peerage": 11.064133644104004, "precinct": 9.255075454711914, "textiles": 8.600203514099121, "cheltenham": 10.631366729736328, "shuffled": 11.028668403625488, "dai": 7.833771705627441, "confess": 9.587299346923828, "tasting": 7.702330112457275, "bhutan": 9.136963844299316, "##riation": 9.542166709899902, "tyrone": 9.955940246582031, "segregation": 8.292673110961914, "abrupt": 8.529634475708008, "ruiz": 10.319963455200195, "##rish": 9.457588195800781, "smirked": 13.25416374206543, "blackwell": 9.730653762817383, "confidential": 7.738526344299316, "browning": 8.559270858764648, "amounted": 9.321073532104492, "##put": 7.825242519378662, "vase": 8.119694709777832, "scarce": 8.613190650939941, "fabulous": 8.067499160766602, "raided": 10.273054122924805, "staple": 7.361539840698242, "guyana": 8.98604679107666, "unemployed": 7.99147367477417, "glider": 9.313522338867188, "shay": 9.019123077392578, "##tow": 9.167916297912598, "carmine": 10.164588928222656, "troll": 8.675470352172852, "intervene": 9.262197494506836, "squash": 7.357452869415283, "superstar": 8.161602020263672, "##uce": 7.274298667907715, "cylindrical": 8.188918113708496, "len": 7.433506488800049, "roadway": 8.458373069763184, "researched": 8.347455978393555, "handy": 7.073479652404785, "##rium": 8.214491844177246, "##jana": 10.467560768127441, "meta": 5.954213619232178, "lao": 9.337635040283203, "declares": 8.729923248291016, "##rring": 8.997864723205566, "##tadt": 10.376416206359863, "##elin": 7.858339309692383, "##kova": 10.60365104675293, "willem": 10.176405906677246, "shrubs": 7.514993190765381, "napoleonic": 9.678742408752441, "realms": 9.376932144165039, "skater": 9.69697380065918, "qi": 8.209490776062012, "volkswagen": 8.391854286193848, "##\u0142": 10.19439697265625, "tad": 8.209490776062012, "hara": 8.043972969055176, "archaeologist": 10.01738452911377, "awkwardly": 10.689214706420898, "eerie": 10.138500213623047, "##kind": 8.663616180419922, "wiley": 9.607282638549805, "##heimer": 9.638028144836426, "##24": 7.164533615112305, "titus": 9.23981761932373, "organizers": 9.242149353027344, "cfl": 9.399906158447266, "crusaders": 10.289556503295898, "lama": 9.624246597290039, "usb": 6.376834392547607, "vent": 6.060671806335449, "enraged": 10.508133888244629, "thankful": 9.256258964538574, "occupants": 9.0303955078125, "maximilian": 10.432400703430176, "##gaard": 10.409629821777344, "possessing": 8.539416313171387, "textbooks": 8.459440231323242, "##oran": 8.188103675842285, "collaborator": 10.06674575805664, "quaker": 9.001529693603516, "##ulo": 6.538780212402344, "avalanche": 9.279014587402344, "mono": 5.688838481903076, "silky": 8.807724952697754, "straits": 9.372932434082031, "isaiah": 9.183208465576172, "mustang": 8.475582122802734, "surged": 9.807766914367676, "resolutions": 8.6416015625, "potomac": 8.814553260803223, "descend": 8.44093132019043, "cl": 4.7344255447387695, "kilograms": 7.507754325866699, "plato": 8.448293685913086, "strains": 7.240133285522461, "saturdays": 8.815315246582031, "##olin": 7.508372783660889, "bernstein": 9.652002334594727, "##ype": 8.318761825561523, "holstein": 9.820176124572754, "ponytail": 9.889095306396484, "##watch": 7.452630043029785, "belize": 8.610082626342773, "conversely": 8.213656425476074, "heroine": 8.917083740234375, "perpetual": 8.70436954498291, "##ylus": 9.135913848876953, "charcoal": 7.778780460357666, "piedmont": 8.774264335632324, "glee": 8.887988090515137, "negotiating": 8.640961647033691, "backdrop": 8.656440734863281, "prologue": 10.05614948272705, "##jah": 9.287530899047852, "##mmy": 7.600317001342773, "pasadena": 9.056234359741211, "climbs": 9.076803207397461, "ramos": 10.292889595031738, "sunni": 9.022866249084473, "##holm": 10.197427749633789, "##tner": 9.204343795776367, "##tri": 5.744616508483887, "anand": 9.982511520385742, "deficiency": 6.256656169891357, "hertfordshire": 10.27633285522461, "stout": 8.678123474121094, "##avi": 6.83034086227417, "aperture": 8.756147384643555, "orioles": 9.659063339233398, "##irs": 8.857328414916992, "doncaster": 11.435877799987793, "intrigued": 9.595577239990234, "bombed": 9.953558921813965, "coating": 6.804509162902832, "otis": 9.389029502868652, "##mat": 5.836118221282959, "cocktail": 7.517695426940918, "##jit": 8.923006057739258, "##eto": 7.483124732971191, "amir": 9.884645462036133, "arousal": 8.869318008422852, "sar": 6.646076202392578, "##proof": 7.274787902832031, "##act": 6.388205528259277, "##ories": 5.026538372039795, "dixie": 8.946183204650879, "pots": 7.836058139801025, "##bow": 8.779396057128906, "whereabouts": 10.074767112731934, "159": 7.554152011871338, "##fted": 9.282655715942383, "drains": 7.746082305908203, "bullying": 8.580129623413086, "cottages": 9.528081893920898, "scripture": 8.744013786315918, "coherent": 9.0144624710083, "fore": 6.371461868286133, "poe": 8.570540428161621, "appetite": 6.680168151855469, "##uration": 7.48292350769043, "sampled": 9.160356521606445, "##ators": 8.212821960449219, "##dp": 8.533650398254395, "derrick": 9.620831489562988, "rotor": 7.855417251586914, "jays": 9.009824752807617, "peacock": 8.94879150390625, "installment": 7.636923789978027, "##rro": 7.141266822814941, "advisors": 8.186071395874023, "##coming": 8.96902084350586, "rodeo": 8.875772476196289, "scotch": 8.42172908782959, "##mot": 7.277567386627197, "##db": 7.403352737426758, "##fen": 7.126097679138184, "##vant": 8.215327262878418, "ensued": 10.455702781677246, "rodrigo": 10.428569793701172, "dictatorship": 9.248003959655762, "martyrs": 10.38005256652832, "twenties": 9.196505546569824, "##\u043d": 9.2838716506958, "towed": 9.219067573547363, "incidence": 7.252190113067627, "marta": 9.941739082336426, "rainforest": 7.54641056060791, "sai": 8.35128116607666, "scaled": 8.714651107788086, "##cles": 8.398360252380371, "oceanic": 7.521240234375, "qualifiers": 10.309724807739258, "symphonic": 10.60365104675293, "mcbride": 10.244019508361816, "dislike": 8.425333976745605, "generalized": 7.734899044036865, "aubrey": 9.847604751586914, "colonization": 8.621943473815918, "##iation": 8.324341773986816, "##lion": 7.997508525848389, "##ssing": 9.105921745300293, "disliked": 10.007296562194824, "lublin": 11.684205055236816, "salesman": 8.839217185974121, "##ulates": 7.934937477111816, "spherical": 8.186071395874023, "whatsoever": 8.722952842712402, "sweating": 7.289921283721924, "avalon": 9.422021865844727, "contention": 9.321073532104492, "punt": 9.523430824279785, "severity": 6.634908199310303, "alderman": 10.57668399810791, "atari": 10.037872314453125, "##dina": 7.742166996002197, "##grant": 7.812025547027588, "##rop": 5.869393348693848, "scarf": 8.834546089172363, "seville": 9.534317016601562, "vertices": 8.854947090148926, "annexation": 9.2374906539917, "fairfield": 8.81075382232666, "fascination": 9.4795503616333, "inspiring": 8.197096824645996, "launches": 8.349844932556152, "palatinate": 10.89819049835205, "regretted": 10.880008697509766, "##rca": 9.106941223144531, "feral": 9.0144624710083, "##iom": 7.187756538391113, "elk": 7.755278587341309, "nap": 7.0112504959106445, "olsen": 9.636295318603516, "reddy": 10.463592529296875, "yong": 9.836966514587402, "##leader": 8.89209270477295, "##iae": 8.993303298950195, "garment": 8.088272094726562, "transports": 8.212821960449219, "feng": 9.509605407714844, "gracie": 10.179381370544434, "outrage": 9.648490905761719, "viceroy": 9.934713363647461, "insides": 9.366301536560059, "##esis": 7.5281572341918945, "breakup": 9.129633903503418, "grady": 9.948814392089844, "organizer": 9.034181594848633, "softer": 7.874266147613525, "grimaced": 13.743711471557617, "222": 7.896512985229492, "murals": 10.10197925567627, "galicia": 10.21271800994873, "arranging": 8.979740142822266, "vectors": 8.59224796295166, "##rsten": 9.66974925994873, "bas": 7.0333170890808105, "##sb": 7.253148078918457, "##cens": 7.359582901000977, "sloan": 9.37559700012207, "##eka": 8.977945327758789, "bitten": 8.58859634399414, "ara": 7.127928733825684, "fender": 8.815315246582031, "nausea": 5.976113796234131, "bumped": 9.726855278015137, "kris": 8.011052131652832, "banquet": 8.85971450805664, "comrades": 10.289556503295898, "detector": 8.398862838745117, "persisted": 9.749866485595703, "##llan": 8.64931583404541, "adjustment": 7.199497222900391, "endowed": 9.528081893920898, "cinemas": 9.562868118286133, "##shot": 8.165572166442871, "sellers": 7.399091720581055, "##uman": 9.383634567260742, "peek": 8.521082878112793, "epa": 7.149298667907715, "kindly": 9.219067573547363, "neglect": 7.975226402282715, "simpsons": 9.236329078674316, "talon": 9.71180248260498, "mausoleum": 9.675134658813477, "runaway": 9.147529602050781, "hangul": 10.508133888244629, "lookout": 8.897041320800781, "##cic": 8.777193069458008, "rewards": 7.046872615814209, "coughed": 10.479560852050781, "acquainted": 9.595577239990234, "chloride": 6.927783489227295, "##ald": 8.375524520874023, "quicker": 7.795677185058594, "accordion": 9.977627754211426, "neolithic": 9.208850860595703, "##qa": 8.531353950500488, "artemis": 9.327410697937012, "coefficient": 8.038352012634277, "lenny": 10.007296562194824, "pandora": 8.709839820861816, "tx": 6.277273654937744, "##xed": 8.29493522644043, "ecstasy": 9.116162300109863, "litter": 7.464598178863525, "segunda": 12.610613822937012, "chairperson": 10.141366004943848, "gemma": 10.537548065185547, "hiss": 9.918508529663086, "rumor": 8.664271354675293, "vow": 9.6933012008667, "nasal": 6.664173126220703, "antioch": 9.775407791137695, "compensate": 7.967690467834473, "patiently": 10.1853609085083, "transformers": 8.633946418762207, "##eded": 9.194276809692383, "judo": 10.009808540344238, "morrow": 9.534317016601562, "penis": 7.234315395355225, "posthumous": 10.326848030090332, "philips": 9.111028671264648, "bandits": 10.581128120422363, "husbands": 9.242149353027344, "denote": 7.9911394119262695, "flaming": 8.819896697998047, "##any": 8.581937789916992, "##phones": 8.048563003540039, "langley": 9.845467567443848, "yorker": 8.878204345703125, "1760": 9.23516845703125, "walters": 9.854042053222656, "##uo": 7.946694850921631, "##kle": 6.637235164642334, "gubernatorial": 9.923111915588379, "fatty": 6.209146022796631, "samsung": 6.9150567054748535, "leroy": 9.78139591217041, "outlaw": 9.104903221130371, "##nine": 8.741179466247559, "unpublished": 9.728752136230469, "poole": 9.12755012512207, "jakob": 9.73829460144043, "##\u1d62": 15.58953857421875, "##\u2099": 1.0, "crete": 8.904510498046875, "distorted": 8.79944133758545, "superiority": 9.121322631835938, "##dhi": 9.524978637695312, "intercept": 8.632676124572754, "crust": 6.258427143096924, "mig": 6.864952087402344, "claus": 9.096794128417969, "crashes": 8.185665130615234, "positioning": 8.104982376098633, "188": 8.42224407196045, "stallion": 9.276594161987305, "301": 8.054242134094238, "frontal": 7.864208698272705, "armistice": 9.689640998840332, "##estinal": 6.177373886108398, "elton": 9.545323371887207, "aj": 8.074738502502441, "encompassing": 8.47125244140625, "camel": 7.919576644897461, "commemorated": 10.10197925567627, "malaria": 7.994822025299072, "woodward": 9.632838249206543, "calf": 7.361539840698242, "cigar": 8.442503929138184, "penetrate": 7.732316017150879, "##oso": 6.894980430603027, "willard": 9.75765609741211, "##rno": 9.253893852233887, "##uche": 8.907848358154297, "illustrate": 7.847860336303711, "amusing": 9.57419490814209, "convergence": 8.786033630371094, "noteworthy": 9.071866989135742, "##lma": 8.927257537841797, "##rva": 8.21240520477295, "journeys": 9.006129264831543, "realise": 9.093770027160645, "manfred": 10.709264755249023, "##sable": 7.082193851470947, "410": 7.727940082550049, "##vocation": 9.25862979888916, "hearings": 8.69284439086914, "fiance": 8.852571487426758, "##posed": 8.60946273803711, "educators": 7.958591938018799, "provoked": 9.567707061767578, "adjusting": 7.799256324768066, "##cturing": 8.81075382232666, "modular": 8.18161392211914, "stockton": 9.17444133758545, "paterson": 9.937049865722656, "vlad": 9.920807838439941, "rejects": 9.436097145080566, "electors": 9.271772384643555, "selena": 9.013533592224121, "maureen": 9.69697380065918, "##tres": 8.853363037109375, "uber": 7.632011413574219, "##rce": 7.7707061767578125, "swirled": 10.679337501525879, "##num": 7.669576644897461, "proportions": 7.928953170776367, "nanny": 8.890448570251465, "pawn": 8.907011985778809, "naturalist": 8.80923843383789, "parma": 10.10197925567627, "apostles": 9.44606876373291, "awoke": 10.313125610351562, "ethel": 9.695136070251465, "wen": 8.328547477722168, "##bey": 9.311017036437988, "monsoon": 8.651254653930664, "overview": 5.556032180786133, "##inating": 7.815383434295654, "mccain": 8.962821006774902, "rendition": 9.185412406921387, "risky": 8.357528686523438, "adorned": 9.569324493408203, "##ih": 7.80951452255249, "equestrian": 9.346667289733887, "germain": 10.019922256469727, "nj": 6.958481311798096, "conspicuous": 8.805459022521973, "confirming": 8.65060806274414, "##yoshi": 11.131322860717773, "shivering": 9.620831489562988, "##imeter": 7.5338521003723145, "milestone": 7.760836601257324, "rumours": 9.622537612915039, "flinched": 13.46927547454834, "bounds": 8.96105670928955, "smacked": 11.631905555725098, "token": 8.204100608825684, "##bei": 8.525634765625, "lectured": 11.345816612243652, "automobiles": 8.261101722717285, "##shore": 8.90284538269043, "impacted": 8.029631614685059, "##iable": 8.03067398071289, "nouns": 7.317138195037842, "nero": 9.464855194091797, "##leaf": 8.527918815612793, "ismail": 10.799272537231445, "prostitute": 9.822259902954102, "trams": 10.838826179504395, "##lace": 8.049980163574219, "bridget": 9.436097145080566, "sud": 8.253686904907227, "stimulus": 7.645874500274658, "impressions": 8.654492378234863, "reins": 7.592660427093506, "revolves": 8.666894912719727, "##oud": 8.943581581115723, "##gned": 8.82450008392334, "giro": 9.828536033630371, "honeymoon": 8.898695945739746, "##swell": 9.261007308959961, "criterion": 8.638404846191406, "##sms": 6.736588001251221, "##uil": 8.205342292785645, "libyan": 10.479560852050781, "prefers": 8.406427383422852, "##osition": 7.711888790130615, "211": 8.10535717010498, "preview": 7.0877299308776855, "sucks": 8.897868156433105, "accusation": 9.775407791137695, "bursts": 8.545796394348145, "metaphor": 7.90874719619751, "diffusion": 7.647768974304199, "tolerate": 7.725374698638916, "faye": 8.329484939575195, "betting": 8.873347282409668, "cinematographer": 10.369182586669922, "liturgical": 9.828536033630371, "specials": 8.443553924560547, "bitterly": 10.299589157104492, "humboldt": 9.680550575256348, "##ckle": 8.549878120422363, "flux": 8.175568580627441, "rattled": 11.014827728271484, "##itzer": 10.533292770385742, "archaeologists": 9.132768630981445, "odor": 6.516508102416992, "authorised": 9.24917984008789, "marshes": 8.905344009399414, "discretion": 7.696588516235352, "##\u043e\u0432": 10.398435592651367, "alarmed": 9.476593971252441, "archaic": 8.21574592590332, "inverse": 7.901388645172119, "##leton": 10.104742050170898, "explorers": 8.529062271118164, "##pine": 7.162051200866699, "drummond": 10.244019508361816, "tsunami": 8.167962074279785, "woodlands": 8.709839820861816, "##minate": 8.594078063964844, "##tland": 9.975194931030273, "booklet": 8.313213348388672, "insanity": 9.31226921081543, "owning": 7.977861404418945, "insert": 5.956264495849609, "crafted": 8.068581581115723, "calculus": 8.464792251586914, "##tore": 8.245035171508789, "receivers": 8.794952392578125, "##bt": 7.944459915161133, "stung": 10.035287857055664, "##eca": 7.9305243492126465, "##nched": 9.067935943603516, "prevailing": 8.171957969665527, "travellers": 8.75113296508789, "eyeing": 10.599105834960938, "lila": 9.006129264831543, "graphs": 7.952465057373047, "##borne": 8.099754333496094, "178": 8.426366806030273, "julien": 10.209641456604004, "##won": 9.52188491821289, "morale": 9.031340599060059, "adaptive": 8.051043510437012, "therapist": 6.699081897735596, "erica": 9.410902976989746, "cw": 7.8243937492370605, "libertarian": 9.46924114227295, "bowman": 8.953154563903809, "pitches": 8.951407432556152, "vita": 8.546960830688477, "##ional": 7.67467737197876, "crook": 9.149656295776367, "##ads": 8.576522827148438, "##entation": 7.083002090454102, "caledonia": 10.002289772033691, "mutiny": 10.161656379699707, "##sible": 8.517682075500488, "1840s": 9.37826919555664, "automation": 8.007309913635254, "##\u00df": 10.306334495544434, "flock": 8.001214981079102, "##pia": 8.5359525680542, "ironic": 9.106941223144531, "pathology": 7.6715168952941895, "##imus": 9.277803421020508, "remarried": 9.747928619384766, "##22": 6.917452335357666, "joker": 8.993303298950195, "withstand": 7.788829326629639, "energies": 8.434662818908691, "##att": 7.169223308563232, "shropshire": 10.471545219421387, "hostages": 10.179381370544434, "madeleine": 10.08828067779541, "tentatively": 10.447875022888184, "conflicting": 8.633310317993164, "mateo": 9.40676498413086, "recipes": 6.3331098556518555, "euros": 8.206584930419922, "ol": 6.111183166503906, "mercenaries": 10.67443561553955, "nico": 7.2989115715026855, "##ndon": 9.424820899963379, "albuquerque": 8.662961959838867, "augmented": 9.327410697937012, "mythical": 8.721564292907715, "bel": 6.988433361053467, "freud": 8.512603759765625, "##child": 8.429469108581543, "cough": 6.32980489730835, "##lica": 6.626335620880127, "365": 7.0619330406188965, "freddy": 9.484002113342285, "lillian": 9.749866485595703, "genetically": 7.59243631362915, "nuremberg": 9.76747989654541, "calder": 9.0659761428833, "209": 8.156463623046875, "bonn": 8.827580451965332, "outdoors": 7.299245834350586, "paste": 6.284888744354248, "suns": 7.782028675079346, "urgency": 8.699607849121094, "vin": 7.235413551330566, "restraint": 8.52734661102295, "tyson": 8.938397407531738, "##cera": 7.088542461395264, "##selle": 10.38005256652832, "barrage": 9.960719108581543, "bethlehem": 9.422021865844727, "kahn": 9.706216812133789, "##par": 6.489571571350098, "mounts": 8.665581703186035, "nippon": 10.273054122924805, "barony": 11.28998851776123, "happier": 8.763355255126953, "ryu": 9.771435737609863, "makeshift": 10.167530059814453, "sheldon": 9.07383918762207, "blushed": 12.245499610900879, "castillo": 10.191375732421875, "barking": 9.29735279083252, "listener": 8.870927810668945, "taped": 9.37559700012207, "bethel": 9.603924751281738, "fluent": 8.920463562011719, "headlines": 8.273877143859863, "pornography": 9.588949203491211, "rum": 7.204658508300781, "disclosure": 7.449514865875244, "sighing": 11.415151596069336, "mace": 8.867711067199707, "doubling": 8.680784225463867, "gunther": 11.086031913757324, "manly": 9.543744087219238, "##plex": 7.871890544891357, "rt": 6.970210075378418, "interventions": 8.123883247375488, "physiological": 7.364749908447266, "forwards": 8.829896926879883, "emerges": 8.624458312988281, "##tooth": 7.43465518951416, "##gny": 10.296234130859375, "compliment": 7.63224458694458, "rib": 6.138319492340088, "recession": 7.923628807067871, "visibly": 9.397175788879395, "barge": 9.62767505645752, "faults": 8.423787117004395, "connector": 7.2843017578125, "exquisite": 8.789739608764648, "prefect": 10.372793197631836, "##rlin": 9.763538360595703, "patio": 7.49648380279541, "##cured": 8.53537654876709, "elevators": 9.2838716506958, "brandt": 10.383702278137207, "italics": 9.126508712768555, "pena": 9.240982055664062, "173": 8.320618629455566, "wasp": 8.981537818908691, "satin": 8.529634475708008, "ea": 6.350254535675049, "botswana": 9.176626205444336, "graceful": 8.853363037109375, "respectable": 9.244487762451172, "##jima": 10.499886512756348, "##rter": 8.676133155822754, "##oic": 7.971287727355957, "franciscan": 9.704360961914062, "generates": 7.456538200378418, "##dl": 8.202860832214355, "alfredo": 10.091005325317383, "disgusting": 9.265777587890625, "##olate": 7.649904727935791, "##iously": 9.282655715942383, "sherwood": 9.822259902954102, "warns": 8.804704666137695, "cod": 6.978915691375732, "promo": 8.169958114624023, "cheryl": 9.331233024597168, "sino": 9.005208015441895, "##\u0629": 9.447501182556152, "##escu": 11.739391326904297, "twitch": 8.201210975646973, "##zhi": 10.369182586669922, "brownish": 8.497519493103027, "thom": 9.475119590759277, "ortiz": 9.898054122924805, "##dron": 9.011677742004395, "densely": 8.425849914550781, "##beat": 8.47287368774414, "carmel": 8.761909484863281, "reinforce": 8.381431579589844, "##bana": 9.891326904296875, "187": 8.334182739257812, "anastasia": 10.179381370544434, "downhill": 8.879015922546387, "vertex": 8.545214653015137, "contaminated": 7.218142509460449, "remembrance": 9.24917984008789, "harmonic": 8.834546089172363, "homework": 8.057450294494629, "##sol": 6.799421787261963, "fiancee": 9.280226707458496, "gears": 8.291318893432617, "olds": 7.704836845397949, "angelica": 10.085562705993652, "loft": 8.205342292785645, "ramsay": 9.69881534576416, "quiz": 7.135001182556152, "colliery": 11.909027099609375, "sevens": 11.021724700927734, "##cape": 8.795699119567871, "autism": 7.763761043548584, "##hil": 7.004624366760254, "walkway": 8.629507064819336, "##boats": 9.526529312133789, "ruben": 9.813952445983887, "abnormal": 5.748724460601807, "ounce": 5.729254245758057, "khmer": 9.948814392089844, "##bbe": 8.764078140258789, "zachary": 9.306026458740234, "bedside": 9.353169441223145, "morphology": 8.422758102416992, "punching": 9.66617488861084, "##olar": 7.475512981414795, "sparrow": 9.140122413635254, "convinces": 10.512283325195312, "##35": 7.208317756652832, "hewitt": 9.620831489562988, "queer": 9.923111915588379, "remastered": 10.26978588104248, "rods": 7.783927917480469, "mabel": 10.08828067779541, "solemn": 9.350563049316406, "notified": 8.11401081085205, "lyricist": 9.715544700622559, "symmetric": 8.982438087463379, "##xide": 7.0403947830200195, "174": 8.346979141235352, "encore": 9.422021865844727, "passports": 8.407440185546875, "wildcats": 9.889095306396484, "##uni": 6.858794212341309, "baja": 8.640961647033691, "##pac": 7.583504676818848, "mildly": 8.521650314331055, "##ease": 8.051753997802734, "bleed": 7.616268157958984, "commodity": 7.856293201446533, "mounds": 9.153923034667969, "glossy": 8.331360816955566, "orchestras": 10.409629821777344, "##omo": 7.724606513977051, "damian": 9.659063339233398, "prelude": 9.706216812133789, "ambitions": 9.44606876373291, "##vet": 7.866861343383789, "awhile": 8.662961959838867, "remotely": 8.455179214477539, "##aud": 8.600203514099121, "asserts": 9.353169441223145, "imply": 8.028590202331543, "##iques": 9.965520858764648, "distinctly": 8.709839820861816, "modelling": 9.518800735473633, "remedy": 7.153338432312012, "##dded": 10.57668399810791, "windshield": 8.501964569091797, "dani": 9.204343795776367, "xiao": 9.813952445983887, "##endra": 11.228565216064453, "audible": 8.81075382232666, "powerplant": 10.475544929504395, "1300": 8.04538345336914, "invalid": 8.003580093383789, "elemental": 8.355120658874512, "acquisitions": 8.797194480895996, "##hala": 7.323974132537842, "immaculate": 9.977627754211426, "libby": 10.124295234680176, "plata": 9.456140518188477, "smuggling": 9.920807838439941, "ventilation": 7.609400749206543, "denoted": 8.215327262878418, "minh": 9.393095016479492, "##morphism": 8.599589347839355, "430": 7.774466037750244, "differed": 9.545323371887207, "dion": 8.725038528442383, "kelley": 9.063043594360352, "lore": 8.434142112731934, "mocking": 8.921310424804688, "sabbath": 9.546905517578125, "spikes": 8.291318893432617, "hygiene": 7.588630199432373, "drown": 9.296119689941406, "runoff": 8.617557525634766, "stylized": 8.828351974487305, "tally": 9.087748527526855, "liberated": 9.584007263183594, "aux": 8.740472793579102, "interpreter": 8.651901245117188, "righteous": 8.915398597717285, "aba": 7.093160629272461, "siren": 9.419230461120605, "reaper": 9.394453048706055, "pearce": 10.636061668395996, "millie": 10.061432838439941, "##cier": 8.200386047363281, "##yra": 8.568157196044922, "gaius": 9.944091796875, "##iso": 7.3289594650268555, "captures": 8.36770248413086, "##ttering": 9.36497974395752, "dorm": 8.253252983093262, "claudio": 10.961302757263184, "##sic": 7.048173427581787, "benches": 9.523430824279785, "knighted": 10.89819049835205, "blackness": 10.961302757263184, "##ored": 9.123394012451172, "discount": 5.991240978240967, "fumble": 10.689214706420898, "oxidation": 7.295072555541992, "routed": 9.159281730651855, "##\u03c2": 8.803951263427734, "novak": 9.955940246582031, "perpendicular": 7.660171985626221, "spoiled": 8.996037483215332, "fracture": 6.940323829650879, "splits": 8.08203125, "##urt": 8.379459381103516, "pads": 7.262941360473633, "topology": 9.214513778686523, "##cats": 9.2374906539917, "axes": 8.666237831115723, "fortunate": 8.756147384643555, "offenders": 6.787918567657471, "protestants": 9.801619529724121, "esteem": 8.069665908813477, "221": 8.03520393371582, "broadband": 7.974568843841553, "convened": 9.345372200012207, "frankly": 9.19762134552002, "hound": 8.811511993408203, "prototypes": 9.745994567871094, "isil": 10.599105834960938, "facilitated": 8.70436954498291, "keel": 8.977945327758789, "##sher": 8.03590202331543, "sahara": 8.409976959228516, "awaited": 9.189835548400879, "bubba": 9.91392707824707, "orb": 8.63776683807373, "prosecutors": 9.1411771774292, "186": 8.242024421691895, "hem": 5.461189270019531, "520": 7.87040901184082, "##xing": 8.994213104248047, "relaxing": 7.6224894523620605, "remnant": 9.303540229797363, "romney": 9.327410697937012, "sorted": 7.197681903839111, "slalom": 10.640778541564941, "stefano": 10.709264755249023, "ulrich": 10.39104175567627, "##active": 7.011877536773682, "exemption": 6.906209468841553, "folder": 6.218071937561035, "pauses": 9.761573791503906, "foliage": 7.570254802703857, "hitchcock": 9.399906158447266, "epithet": 9.349263191223145, "204": 7.6529974937438965, "criticisms": 9.73829460144043, "##aca": 7.864208698272705, "ballistic": 9.0181884765625, "brody": 9.932381629943848, "hinduism": 8.698251724243164, "chaotic": 9.279014587402344, "youths": 9.74213695526123, "equals": 6.624545097351074, "##pala": 9.453252792358398, "pts": 8.135397911071777, "thicker": 7.286446571350098, "analogous": 8.448293685913086, "capitalist": 8.834546089172363, "improvised": 9.939391136169434, "overseeing": 8.85971450805664, "sinatra": 9.113079071044922, "ascended": 9.875805854797363, "beverage": 7.150163173675537, "##tl": 7.679315090179443, "straightforward": 7.689396381378174, "##kon": 8.644808769226074, "curran": 9.52188491821289, "##west": 9.057204246520996, "bois": 9.3518648147583, "325": 7.027435779571533, "induce": 7.496687889099121, "surveying": 9.067935943603516, "emperors": 9.037981986999512, "sax": 9.588949203491211, "unpopular": 9.57419490814209, "##kk": 8.524495124816895, "cartoonist": 9.52188491821289, "fused": 8.191773414611816, "##mble": 8.683451652526855, "unto": 8.324808120727539, "##yuki": 11.47866439819336, "localities": 8.96193790435791, "##cko": 8.696220397949219, "##ln": 7.682009696960449, "darlington": 10.52905559539795, "slain": 9.577454566955566, "academie": 11.697718620300293, "lobbying": 9.222496032714844, "sediment": 7.629447937011719, "puzzles": 8.953154563903809, "##grass": 7.877243995666504, "defiance": 9.6933012008667, "dickens": 9.021928787231445, "manifest": 7.574431419372559, "tongues": 9.287530899047852, "alumnus": 10.228246688842773, "arbor": 8.024435997009277, "coincide": 8.30815315246582, "184": 8.362360000610352, "appalachian": 8.239450454711914, "mustafa": 10.599105834960938, "examiner": 8.01892375946045, "cabaret": 10.138500213623047, "traumatic": 7.436572551727295, "yves": 10.631366729736328, "bracelet": 8.449878692626953, "draining": 8.062821388244629, "heroin": 7.844391345977783, "magnum": 8.91203498840332, "baths": 7.876945972442627, "odessa": 9.932381629943848, "consonants": 9.165750503540039, "mitsubishi": 9.313522338867188, "##gua": 6.730317115783691, "kellan": 11.909027099609375, "vaudeville": 10.152910232543945, "##fr": 6.197293758392334, "joked": 10.164588928222656, "null": 7.698332786560059, "straps": 8.64931583404541, "probation": 7.799532413482666, "##\u0142aw": 11.960762977600098, "ceded": 9.430442810058594, "interfaces": 8.234323501586914, "##pas": 7.223711013793945, "##zawa": 11.178762435913086, "blinding": 10.35487174987793, "viet": 9.096794128417969, "224": 8.06894302368164, "rothschild": 10.443984031677246, "museo": 10.714341163635254, "640": 7.6715168952941895, "huddersfield": 11.546487808227539, "##vr": 7.693854331970215, "tactic": 9.140122413635254, "##storm": 7.4647955894470215, "brackets": 7.787465572357178, "dazed": 10.572258949279785, "incorrectly": 8.081299781799316, "##vu": 6.293601989746094, "reg": 6.618513584136963, "glazed": 8.74970531463623, "fearful": 9.333788871765137, "manifold": 8.587989807128906, "benefited": 9.459036827087402, "irony": 8.792715072631836, "##sun": 8.81379222869873, "stumbling": 10.132794380187988, "##rte": 6.529207706451416, "willingness": 8.730623245239258, "balkans": 9.397175788879395, "mei": 7.174821376800537, "wraps": 8.168360710144043, "##aba": 8.217840194702148, "injected": 7.4586944580078125, "##lea": 6.343027114868164, "gu": 6.139892578125, "syed": 10.827364921569824, "harmless": 7.439070701599121, "##hammer": 9.625959396362305, "bray": 9.570945739746094, "takeoff": 9.280226707458496, "poppy": 8.3422212600708, "timor": 10.045663833618164, "cardboard": 8.237738609313965, "astronaut": 8.686125755310059, "purdue": 8.96193790435791, "weeping": 9.350563049316406, "southbound": 10.045663833618164, "cursing": 10.761224746704102, "stalls": 9.128591537475586, "diagonal": 8.047148704528809, "##neer": 8.104233741760254, "lamar": 8.672163009643555, "bryce": 9.422021865844727, "comte": 9.980066299438477, "weekdays": 8.676795959472656, "harrington": 9.824347496032715, "##uba": 6.813731670379639, "negatively": 7.909055233001709, "##see": 7.467761516571045, "lays": 8.15174388885498, "grouping": 7.9654083251953125, "##cken": 8.96193790435791, "##henko": 11.594400405883789, "affirmed": 9.689640998840332, "halle": 8.923006057739258, "modernist": 9.980066299438477, "##lai": 7.336745262145996, "hodges": 10.27633285522461, "smelling": 8.08790397644043, "aristocratic": 9.622537612915039, "baptized": 9.436097145080566, "dismiss": 8.700286865234375, "justification": 8.8016939163208, "oilers": 10.26978588104248, "##now": 7.588630199432373, "coupling": 8.733428001403809, "qin": 9.22708511352539, "snack": 7.073212623596191, "healer": 9.323603630065918, "##qing": 10.459639549255371, "gardener": 7.81007194519043, "layla": 10.319963455200195, "battled": 9.567707061767578, "formulated": 7.714672565460205, "stephenson": 9.970346450805664, "gravitational": 7.888338565826416, "##gill": 8.595911979675293, "##jun": 6.99248743057251, "1768": 10.14712142944336, "granny": 9.61912727355957, "coordinating": 8.311369895935059, "suites": 7.583949089050293, "##cd": 8.063539505004883, "##ioned": 9.010750770568848, "monarchs": 9.311017036437988, "##cote": 10.014852523803711, "##hips": 8.312751770019531, "sep": 6.30982780456543, "blended": 7.715179920196533, "apr": 6.308335781097412, "barrister": 10.237680435180664, "deposition": 7.868337631225586, "fia": 9.700660705566406, "mina": 8.66755199432373, "policemen": 10.827364921569824, "paranoid": 9.419230461120605, "##pressed": 9.158207893371582, "churchyard": 11.093440055847168, "covert": 9.0610933303833, "crumpled": 10.821682929992676, "creep": 8.42481803894043, "abandoning": 10.161656379699707, "tr": 5.2722320556640625, "transmit": 7.026926040649414, "conceal": 8.400370597839355, "barr": 7.740085124969482, "understands": 8.344120979309082, "readiness": 8.172759056091309, "spire": 9.328682899475098, "##cology": 7.984477996826172, "##enia": 7.900777816772461, "##erry": 8.917083740234375, "610": 8.071112632751465, "startling": 9.481032371520996, "unlock": 7.244558334350586, "vida": 9.862690925598145, "bowled": 11.108421325683594, "slots": 8.282783508300781, "##nat": 7.234472274780273, "##islav": 10.6082181930542, "spaced": 7.941593647003174, "trusting": 9.747928619384766, "admire": 8.779396057128906, "rig": 7.170105457305908, "##ink": 7.447378635406494, "slack": 8.815315246582031, "##70": 7.061405658721924, "mv": 7.931153774261475, "207": 7.898338317871094, "casualty": 8.577723503112793, "##wei": 8.490337371826172, "classmates": 9.193164825439453, "##odes": 8.052108764648438, "##rar": 8.245466232299805, "##rked": 11.220090866088867, "amherst": 9.503521919250488, "furnished": 8.456242561340332, "evolve": 7.4153056144714355, "foundry": 9.749866485595703, "menace": 9.508081436157227, "mead": 9.142232894897461, "##lein": 9.891326904296875, "flu": 5.591695785522461, "wesleyan": 10.074767112731934, "##kled": 8.705052375793457, "monterey": 8.611946105957031, "webber": 10.007296562194824, "##vos": 8.566373825073242, "wil": 7.329304218292236, "##mith": 8.672823905944824, "##\u043d\u0430": 10.626693725585938, "bartholomew": 10.085562705993652, "justices": 8.589812278747559, "restrained": 9.644990921020508, "##cke": 8.800191879272461, "amenities": 7.381137847900391, "191": 8.398862838745117, "mediated": 8.049625396728516, "sewage": 8.425849914550781, "trenches": 8.85971450805664, "ml": 6.137534141540527, "mainz": 10.60365104675293, "##thus": 9.29858684539795, "1800s": 7.888941764831543, "##cula": 5.6596527099609375, "##inski": 9.845467567443848, "caine": 10.52905559539795, "bonding": 7.444279193878174, "213": 8.182827949523926, "converts": 7.278386116027832, "spheres": 8.897868156433105, "superseded": 9.448936462402344, "marianne": 10.289556503295898, "crypt": 7.627819538116455, "sweaty": 9.456140518188477, "ensign": 9.789436340332031, "historia": 10.844606399536133, "##br": 7.401127338409424, "spruce": 8.42070198059082, "##post": 7.157830715179443, "##ask": 8.512040138244629, "forks": 8.635854721069336, "thoughtfully": 10.537548065185547, "yukon": 8.734129905700684, "pamphlet": 9.29858684539795, "ames": 9.072853088378906, "##uter": 7.2754411697387695, "karma": 8.96193790435791, "##yya": 10.313125610351562, "bryn": 9.813952445983887, "negotiation": 8.544633865356445, "sighs": 11.108421325683594, "incapable": 8.981537818908691, "##mbre": 9.090754508972168, "##ntial": 7.566751003265381, "actresses": 8.304032325744629, "taft": 9.068917274475098, "##mill": 7.4661784172058105, "luce": 9.208850860595703, "prevailed": 9.953558921813965, "##amine": 7.425692558288574, "1773": 9.55965518951416, "motionless": 10.279622077941895, "envoy": 10.06674575805664, "testify": 8.878204345703125, "investing": 7.4843316078186035, "sculpted": 9.765506744384766, "instructors": 8.21157169342041, "provence": 9.62767505645752, "kali": 8.640321731567383, "cullen": 9.639764785766602, "horseback": 9.114106178283691, "##while": 8.502522468566895, "goodwin": 10.048274993896484, "##jos": 9.809823989868164, "gaa": 8.75113296508789, "norte": 9.542166709899902, "##ldon": 10.27633285522461, "modify": 7.208776473999023, "wavelength": 7.557611465454102, "abd": 7.813982963562012, "214": 8.117417335510254, "skinned": 8.765527725219727, "sprinter": 9.46924114227295, "forecast": 5.7901716232299805, "scheduling": 7.876349925994873, "marries": 9.368948936462402, "squared": 8.293577194213867, "tentative": 9.413671493530273, "##chman": 9.849745750427246, "boer": 9.397175788879395, "##isch": 10.11586856842041, "bolts": 7.904141902923584, "swap": 7.743470191955566, "fisherman": 8.922158241271973, "assyrian": 9.368948936462402, "impatiently": 11.978620529174805, "guthrie": 9.713671684265137, "martins": 9.497474670410156, "murdoch": 10.19439697265625, "194": 8.489236831665039, "tanya": 9.816022872924805, "nicely": 8.236884117126465, "dolly": 8.7525634765625, "lacy": 9.801619529724121, "med": 5.564940452575684, "##45": 7.140981197357178, "syn": 6.421931743621826, "decks": 8.276985168457031, "fashionable": 8.769158363342285, "millionaire": 8.698929786682129, "##ust": 7.013133525848389, "surfing": 8.477210998535156, "##ml": 7.053262233734131, "##ision": 7.3414459228515625, "heaved": 12.199514389038086, "tammy": 9.615729331970215, "consulate": 8.544052124023438, "attendees": 8.993303298950195, "routinely": 7.874563694000244, "197": 8.639681816101074, "fuse": 7.547696590423584, "saxophonist": 10.72972583770752, "backseat": 10.365585327148438, "malaya": 9.989882469177246, "##lord": 9.013533592224121, "scowl": 11.843963623046875, "tau": 7.660171985626221, "##ishly": 10.244019508361816, "193": 8.434662818908691, "sighted": 9.34020709991455, "steaming": 8.620688438415527, "##rks": 8.871733665466309, "303": 8.146265029907227, "911": 7.812304973602295, "##holes": 8.712586402893066, "##hong": 9.56609058380127, "ching": 9.920807838439941, "##wife": 8.22414779663086, "bless": 9.208850860595703, "conserved": 9.231696128845215, "jurassic": 8.722258567810059, "stacey": 9.937049865722656, "unix": 8.349367141723633, "zion": 8.97169017791748, "chunk": 8.104233741760254, "rigorous": 8.040104866027832, "blaine": 9.67333698272705, "198": 8.437270164489746, "peabody": 9.9093656539917, "slayer": 9.82643985748291, "dismay": 9.660836219787598, "brewers": 9.0303955078125, "nz": 8.620688438415527, "##jer": 8.744723320007324, "det": 6.561960220336914, "##glia": 8.925555229187012, "glover": 9.657293319702148, "postwar": 9.6933012008667, "int": 5.127473831176758, "penetration": 8.184042930603027, "sylvester": 9.327410697937012, "imitation": 8.5475435256958, "vertically": 8.074012756347656, "airlift": 9.946450233459473, "heiress": 10.085562705993652, "knoxville": 8.874155044555664, "viva": 8.728525161743164, "##uin": 7.825525760650635, "390": 7.915230751037598, "macon": 9.211112022399902, "##rim": 6.7401204109191895, "##fighter": 8.62697982788086, "##gonal": 8.906177520751953, "janice": 10.01738452911377, "##orescence": 9.026623725891113, "##wari": 10.77194881439209, "marius": 10.581128120422363, "belongings": 9.079776763916016, "leicestershire": 10.799272537231445, "196": 8.4028902053833, "blanco": 9.659063339233398, "inverted": 8.653843879699707, "preseason": 8.955781936645508, "sanity": 9.980066299438477, "sobbing": 11.644725799560547, "##due": 8.698251724243164, "##elt": 7.816224575042725, "##dled": 9.799578666687012, "collingwood": 11.365140914916992, "regeneration": 8.599589347839355, "flickering": 10.080150604248047, "shortest": 7.495262145996094, "##mount": 8.741179466247559, "##osi": 6.588315486907959, "feminism": 9.281439781188965, "##lat": 7.0485639572143555, "sherlock": 9.335068702697754, "cabinets": 7.673946857452393, "fumbled": 12.39769172668457, "northbound": 10.135643005371094, "precedent": 8.63776683807373, "snaps": 7.882625579833984, "##mme": 8.55809211730957, "researching": 7.934305667877197, "##akes": 7.642096042633057, "guillaume": 10.734908103942871, "insights": 7.518320083618164, "manipulated": 8.951407432556152, "vapor": 6.67558479309082, "neighbour": 9.65024471282959, "sap": 6.770809650421143, "gangster": 9.119255065917969, "frey": 9.461941719055176, "f1": 8.062461853027344, "stalking": 9.335068702697754, "scarcely": 10.05089282989502, "callie": 10.26978588104248, "barnett": 9.977627754211426, "tendencies": 9.131723403930664, "audi": 8.323410034179688, "doomed": 9.554855346679688, "assessing": 7.856877326965332, "slung": 11.100902557373047, "panchayat": 11.534859657287598, "ambiguous": 8.68478775024414, "bartlett": 9.66439151763916, "##etto": 8.735535621643066, "distributing": 8.600817680358887, "violating": 8.826038360595703, "wolverhampton": 11.178762435913086, "##hetic": 7.0539164543151855, "swami": 10.69419002532959, "histoire": 11.619246482849121, "##urus": 9.550077438354492, "liable": 7.748438835144043, "pounder": 10.244019508361816, "groin": 7.445633888244629, "hussain": 11.028668403625488, "larsen": 10.33030891418457, "popping": 8.111369132995605, "surprises": 8.678788185119629, "##atter": 8.267688751220703, "vie": 8.239879608154297, "curt": 8.815315246582031, "##station": 7.127223968505859, "mute": 9.088749885559082, "relocate": 9.09982681274414, "musicals": 9.695136070251465, "authorization": 7.3643927574157715, "richter": 9.44178295135498, "##sef": 10.922959327697754, "immortality": 9.682361602783203, "tna": 10.626693725585938, "bombings": 9.884645462036133, "##press": 6.190811634063721, "deteriorated": 9.997308731079102, "yiddish": 9.183208465576172, "##acious": 8.408961296081543, "robbed": 9.763538360595703, "colchester": 10.766572952270508, "cs": 6.178736686706543, "pmid": 11.056939125061035, "ao": 6.584952354431152, "verified": 7.49648380279541, "balancing": 7.99784517288208, "apostle": 9.311017036437988, "swayed": 10.974417686462402, "recognizable": 7.969650745391846, "oxfordshire": 10.19439697265625, "retention": 7.100813388824463, "nottinghamshire": 10.850419998168945, "contender": 9.271772384643555, "judd": 9.85189151763916, "invitational": 10.05089282989502, "shrimp": 7.299413681030273, "uhf": 9.719300270080566, "##icient": 8.114766120910645, "cleaner": 6.951603889465332, "longitudinal": 8.086800575256348, "tanker": 9.306026458740234, "##mur": 7.471530437469482, "acronym": 6.476774215698242, "broker": 6.627018928527832, "koppen": 9.545323371887207, "sundance": 9.657293319702148, "suppliers": 7.441575050354004, "##gil": 8.042564392089844, "4000": 7.572670936584473, "clipped": 9.745994567871094, "fuels": 7.325003623962402, "petite": 9.117192268371582, "##anne": 8.26329231262207, "landslide": 8.81379222869873, "helene": 10.428569793701172, "diversion": 8.837657928466797, "populous": 7.354266166687012, "landowners": 9.489967346191406, "auspices": 9.944091796875, "melville": 9.967930793762207, "quantitative": 7.655622482299805, "##xes": 8.523356437683105, "ferries": 9.140122413635254, "nicky": 9.91392707824707, "##llus": 7.580840587615967, "doo": 7.9136834144592285, "haunting": 9.463397979736328, "roche": 9.50503921508789, "carver": 9.252713203430176, "downed": 10.428569793701172, "unavailable": 7.811746120452881, "##pathy": 6.775158882141113, "approximation": 8.332301139831543, "hiroshima": 8.862107276916504, "##hue": 9.17444133758545, "garfield": 9.005208015441895, "valle": 9.041797637939453, "comparatively": 8.703006744384766, "keyboardist": 10.085562705993652, "traveler": 7.857461929321289, "##eit": 6.127583980560303, "congestion": 7.423417091369629, "calculating": 7.073346138000488, "subsidiaries": 8.489236831665039, "##bate": 6.995693206787109, "serb": 10.337265014648438, "modernization": 9.472175598144531, "fairies": 10.155817031860352, "deepened": 10.856268882751465, "ville": 9.543744087219238, "averages": 6.236802101135254, "##lore": 8.19627571105957, "inflammatory": 6.185250282287598, "tonga": 9.524978637695312, "##itch": 9.344078063964844, "co\u2082": 12.545016288757324, "squads": 10.215805053710938, "##hea": 5.138382434844971, "gigantic": 8.98063850402832, "serum": 7.004375457763672, "enjoyment": 8.344596862792969, "retailer": 7.3414459228515625, "verona": 9.747928619384766, "35th": 9.324871063232422, "cis": 7.929895401000977, "##phobic": 8.428434371948242, "magna": 8.685457229614258, "technicians": 7.104249000549316, "##vati": 7.410058498382568, "arithmetic": 8.301294326782227, "##sport": 8.69015121459961, "levin": 9.481032371520996, "##dation": 7.55891227722168, "amtrak": 8.82680892944336, "chow": 8.639681816101074, "sienna": 9.948814392089844, "##eyer": 10.08828067779541, "backstage": 9.610652923583984, "entrepreneurship": 9.317291259765625, "##otic": 7.675408363342285, "learnt": 9.264582633972168, "tao": 8.947052001953125, "##udy": 9.941739082336426, "worcestershire": 8.716719627380371, "formulation": 7.550058841705322, "baggage": 7.804233551025391, "hesitant": 9.763538360595703, "bali": 8.727827072143555, "sabotage": 9.622537612915039, "##kari": 9.749866485595703, "barren": 9.12755012512207, "enhancing": 7.9841461181640625, "murmur": 9.443209648132324, "pl": 5.236048221588135, "freshly": 7.835485935211182, "putnam": 9.209980964660645, "syntax": 7.872780799865723, "aces": 9.475119590759277, "medicines": 6.481932640075684, "resentment": 9.575823783874512, "bandwidth": 8.135783195495605, "##sier": 9.182108879089355, "grins": 11.345816612243652, "chili": 7.403909683227539, "guido": 10.38005256652832, "##sei": 9.261007308959961, "framing": 7.983814716339111, "implying": 8.77792739868164, "gareth": 10.323400497436523, "lissa": 11.558252334594727, "genevieve": 10.567853927612305, "pertaining": 7.391357421875, "admissions": 7.4293060302734375, "geo": 6.709231376647949, "thorpe": 10.306334495544434, "proliferation": 8.493645668029785, "sato": 9.828536033630371, "bela": 9.370274543762207, "analyzing": 7.7161946296691895, "parting": 9.785408020019531, "##gor": 7.199345588684082, "awakened": 9.878008842468262, "##isman": 9.29488754272461, "huddled": 11.108421325683594, "secrecy": 9.374263763427734, "##kling": 9.169000625610352, "hush": 10.030139923095703, "gentry": 9.960719108581543, "540": 7.8314900398254395, "dungeons": 9.598907470703125, "##ego": 7.612828731536865, "coasts": 8.482112884521484, "##utz": 10.012328147888184, "sacrificed": 9.747928619384766, "##chule": 11.89236068725586, "landowner": 9.543744087219238, "mutually": 8.572929382324219, "prevalence": 7.608944892883301, "programmer": 8.668867111206055, "adolescent": 8.355120658874512, "disrupted": 8.788997650146484, "seaside": 8.698929786682129, "gee": 8.816840171813965, "trusts": 8.332301139831543, "vamp": 10.14423942565918, "georgie": 11.14688777923584, "##nesian": 8.559270858764648, "##iol": 6.631213188171387, "schedules": 7.314077377319336, "sindh": 10.019922256469727, "##market": 8.095293998718262, "etched": 9.508081436157227, "hm": 7.504462718963623, "sparse": 9.163589477539062, "bey": 9.451811790466309, "beaux": 10.89819049835205, "scratching": 8.283230781555176, "gliding": 9.422021865844727, "unidentified": 9.498983383178711, "216": 8.011393547058105, "collaborating": 9.689640998840332, "gems": 7.405025005340576, "jesuits": 11.086031913757324, "oro": 7.946694850921631, "accumulation": 7.282161712646484, "shaping": 8.253686904907227, "mbe": 9.76747989654541, "anal": 6.783614158630371, "##xin": 7.358340263366699, "231": 8.143537521362305, "enthusiasts": 8.157252311706543, "newscast": 10.26978588104248, "##egan": 9.045626640319824, "janata": 12.034191131591797, "dewey": 9.303540229797363, "parkinson": 7.467167377471924, "179": 8.314597129821777, "ankara": 10.520634651184082, "biennial": 9.103885650634766, "towering": 8.914556503295898, "dd": 6.896768569946289, "inconsistent": 8.660347938537598, "950": 7.668124198913574, "##chet": 8.346025466918945, "thriving": 8.37062931060791, "terminate": 8.207829475402832, "cabins": 8.068221092224121, "furiously": 11.100902557373047, "eats": 7.484935760498047, "advocating": 9.345372200012207, "donkey": 8.506430625915527, "marley": 9.296119689941406, "muster": 10.007296562194824, "phyllis": 9.994827270507812, "leiden": 10.440108299255371, "##user": 8.69284439086914, "grassland": 8.727827072143555, "glittering": 10.188364028930664, "iucn": 9.382290840148926, "loneliness": 9.607282638549805, "217": 8.228798866271973, "memorandum": 8.830670356750488, "armenians": 10.650279998779297, "##ddle": 8.829896926879883, "popularized": 8.56045150756836, "rhodesia": 10.483592987060547, "60s": 8.005951881408691, "lame": 8.086800575256348, "##illon": 10.170479774475098, "sans": 8.71396255493164, "bikini": 8.834546089172363, "header": 7.439455509185791, "orbits": 8.036952018737793, "##xx": 8.055310249328613, "##finger": 9.420625686645508, "##ulator": 6.899681568145752, "sharif": 10.724571228027344, "spines": 8.88553237915039, "biotechnology": 8.706417083740234, "strolled": 11.425460815429688, "naughty": 10.012328147888184, "yates": 9.916215896606445, "##wire": 7.61237096786499, "fremantle": 10.87402057647705, "milo": 9.579089164733887, "##mour": 8.273433685302734, "abducted": 9.845467567443848, "removes": 7.306802749633789, "##atin": 7.1371331214904785, "humming": 8.269011497497559, "wonderland": 9.075814247131348, "##chrome": 8.926405906677246, "##ester": 7.041557788848877, "hume": 7.879931449890137, "pivotal": 8.748279571533203, "##rates": 8.436747550964355, "armand": 10.655064582824707, "grams": 5.6951422691345215, "believers": 9.205469131469727, "elector": 10.326848030090332, "rte": 9.726855278015137, "apron": 9.190943717956543, "bis": 7.0092453956604, "scraped": 9.58072566986084, "##yria": 9.475119590759277, "endorsement": 7.66715669631958, "initials": 8.171157836914062, "##llation": 7.362430572509766, "eps": 7.750275611877441, "dotted": 8.95490550994873, "hints": 8.143537521362305, "buzzing": 9.070882797241211, "emigration": 9.466315269470215, "nearer": 9.301060676574707, "##tom": 6.660367965698242, "indicators": 7.688654899597168, "##ulu": 9.702508926391602, "coarse": 7.436764717102051, "neutron": 7.512298583984375, "protectorate": 9.958327293395996, "##uze": 8.678123474121094, "directional": 8.524495124816895, "exploits": 9.256258964538574, "pains": 7.308658599853516, "loire": 10.032711029052734, "1830s": 9.323603630065918, "proponents": 8.870122909545898, "guggenheim": 10.296234130859375, "rabbits": 7.510024070739746, "ritchie": 9.719300270080566, "305": 8.067138671875, "hectare": 9.234009742736816, "inputs": 7.892871379852295, "hutton": 10.121478080749512, "##raz": 7.838923931121826, "verify": 6.622416973114014, "##ako": 9.417838096618652, "boilers": 9.125470161437988, "longitude": 7.020955562591553, "##lev": 8.489786148071289, "skeletal": 6.8802385330200195, "yer": 8.791970252990723, "emilia": 9.554855346679688, "citrus": 7.288596153259277, "compromised": 8.28906536102295, "##gau": 9.967930793762207, "pokemon": 6.908244609832764, "prescription": 5.840893745422363, "paragraph": 7.026671409606934, "eduard": 11.13907527923584, "cadillac": 8.481021881103516, "attire": 8.656440734863281, "categorized": 7.553719997406006, "kenyan": 9.771435737609863, "weddings": 8.059952735900879, "charley": 9.40952205657959, "##bourg": 10.719443321228027, "entertain": 8.77792739868164, "monmouth": 9.44606876373291, "##lles": 9.185412406921387, "nutrients": 5.710292339324951, "davey": 10.799272537231445, "mesh": 7.570254802703857, "incentive": 8.013099670410156, "practised": 10.203516006469727, "ecosystems": 7.940958023071289, "kemp": 9.132768630981445, "subdued": 9.818097114562988, "overheard": 10.699189186096191, "##rya": 9.423420906066895, "bodily": 7.330684661865234, "maxim": 7.858046531677246, "##nius": 9.967930793762207, "apprenticeship": 8.65904426574707, "ursula": 10.2536039352417, "##fight": 9.732558250427246, "lodged": 9.1411771774292, "rug": 7.878139019012451, "silesian": 11.87596607208252, "unconstitutional": 8.711898803710938, "patel": 8.130776405334473, "inspected": 8.475040435791016, "coyote": 9.044668197631836, "unbeaten": 11.028668403625488, "##hak": 8.466940879821777, "34th": 9.345372200012207, "disruption": 7.982819557189941, "convict": 9.091758728027344, "parcel": 7.918643951416016, "##cl": 5.3083343505859375, "##nham": 10.868067741394043, "collier": 9.585651397705078, "implicated": 9.027565002441406, "mallory": 10.27633285522461, "##iac": 7.938101291656494, "##lab": 7.558261871337891, "susannah": 10.524836540222168, "winkler": 10.383702278137207, "##rber": 8.671503067016602, "shia": 9.657293319702148, "phelps": 9.584007263183594, "sediments": 8.41916275024414, "graphical": 8.006291389465332, "robotic": 8.942715644836426, "##sner": 9.69697380065918, "adulthood": 7.864502906799316, "mart": 7.657774925231934, "smoked": 7.48392915725708, "##isto": 7.636220455169678, "kathryn": 9.427628517150879, "clarified": 9.230541229248047, "##aran": 8.034854888916016, "divides": 7.472723484039307, "convictions": 8.682116508483887, "oppression": 9.075814247131348, "pausing": 10.821682929992676, "burying": 9.721183776855469, "##mt": 7.871890544891357, "federico": 11.028668403625488, "mathias": 11.15476131439209, "eileen": 9.763538360595703, "##tana": 9.460488319396973, "kite": 8.953154563903809, "hunched": 10.862151145935059, "##acies": 7.714166164398193, "189": 8.36965274810791, "##atz": 10.19439697265625, "disadvantage": 7.4080047607421875, "liza": 9.980066299438477, "kinetic": 7.682745933532715, "greedy": 9.625959396362305, "paradox": 8.620060920715332, "yokohama": 10.451781272888184, "dowager": 11.108421325683594, "trunks": 8.813031196594238, "ventured": 10.138500213623047, "##gement": 7.628749847412109, "gupta": 9.941739082336426, "vilnius": 11.467795372009277, "olaf": 10.306334495544434, "##thest": 8.057093620300293, "crimean": 10.200467109680176, "hopper": 8.741179466247559, "##ej": 8.986950874328613, "progressively": 8.512603759765625, "arturo": 10.880008697509766, "mouthed": 10.6082181930542, "arrondissement": 10.709264755249023, "##fusion": 7.01678466796875, "rubin": 9.667960166931152, "simulcast": 10.39104175567627, "oceania": 8.870122909545898, "##orum": 9.37826919555664, "##stra": 7.6364545822143555, "##rred": 10.08828067779541, "busiest": 8.27520751953125, "intensely": 8.877392768859863, "navigator": 8.624458312988281, "cary": 8.840779304504395, "##vine": 8.031370162963867, "##hini": 7.794029235839844, "##bies": 7.770974159240723, "fife": 9.847604751586914, "rowe": 9.268171310424805, "rowland": 10.064085960388184, "posing": 9.293657302856445, "insurgents": 10.788253784179688, "shafts": 8.967246055603027, "lawsuits": 8.505311965942383, "activate": 6.963132381439209, "conor": 9.820176124572754, "inward": 8.071112632751465, "culturally": 8.59163761138916, "garlic": 6.131531238555908, "265": 8.07582950592041, "##eering": 9.889095306396484, "eclectic": 9.07383918762207, "##hui": 9.4795503616333, "##kee": 7.9109039306640625, "##nl": 8.01241683959961, "furrowed": 11.570157051086426, "vargas": 10.572258949279785, "meteorological": 9.07383918762207, "rendezvous": 10.286233901977539, "##aus": 7.675895690917969, "culinary": 7.652045249938965, "commencement": 8.797194480895996, "##dition": 8.571733474731445, "quota": 7.335356712341309, "##notes": 8.118934631347656, "mommy": 9.592257499694824, "salaries": 5.358920097351074, "overlapping": 8.354640007019043, "mule": 8.548709869384766, "##iology": 7.573770999908447, "##mology": 8.791226387023926, "sums": 8.819131851196289, "wentworth": 9.79348087310791, "##isk": 8.217001914978027, "##zione": 10.734908103942871, "mainline": 10.022467613220215, "subgroup": 8.854154586791992, "##illy": 9.726855278015137, "hack": 7.882625579833984, "plaintiff": 7.9305243492126465, "verdi": 10.179381370544434, "bulb": 6.977944850921631, "differentiation": 8.160809516906738, "engagements": 9.529637336730957, "multinational": 8.37503433227539, "supplemented": 9.078784942626953, "bertrand": 10.443984031677246, "caller": 8.003580093383789, "regis": 8.656440734863281, "##naire": 8.072561264038086, "##sler": 10.012328147888184, "##arts": 7.709868907928467, "##imated": 9.149656295776367, "blossom": 8.322012901306152, "propagation": 8.589203834533691, "kilometer": 8.268570899963379, "viaduct": 10.563467979431152, "vineyards": 9.12755012512207, "##uate": 7.512712478637695, "beckett": 10.2313814163208, "optimization": 8.694192886352539, "golfer": 8.108358383178711, "songwriters": 9.195390701293945, "seminal": 8.65904426574707, "semitic": 9.234009742736816, "thud": 11.245733261108398, "volatile": 7.854834079742432, "evolving": 8.177177429199219, "ridley": 9.603924751281738, "##wley": 9.93005657196045, "trivial": 8.947921752929688, "distributions": 7.820723533630371, "scandinavia": 8.753279685974121, "jiang": 10.129953384399414, "##ject": 6.562520503997803, "wrestled": 10.750615119934082, "insistence": 10.27633285522461, "##dio": 8.379459381103516, "emphasizes": 8.276985168457031, "napkin": 9.443209648132324, "##ods": 7.903835773468018, "adjunct": 8.494197845458984, "rhyme": 7.902917385101318, "##ricted": 8.644165992736816, "##eti": 6.559401988983154, "hopeless": 9.013533592224121, "surrounds": 7.4805145263671875, "tremble": 10.372793197631836, "32nd": 9.224787712097168, "smoky": 8.456774711608887, "##ntly": 9.391737937927246, "oils": 6.355058670043945, "medicinal": 7.477510452270508, "padded": 9.23981761932373, "steer": 8.130776405334473, "wilkes": 9.071866989135742, "219": 8.345549583435059, "255": 7.72332763671875, "concessions": 9.437515258789062, "hue": 7.510850429534912, "uniquely": 7.956007480621338, "blinded": 10.19439697265625, "landon": 10.05351734161377, "yahoo": 7.513748645782471, "##lane": 8.698929786682129, "hendrix": 9.433265686035156, "commemorating": 9.648490905761719, "dex": 7.648242950439453, "specify": 6.691765308380127, "chicks": 8.290417671203613, "##ggio": 9.830636978149414, "intercity": 10.26978588104248, "1400": 7.942866325378418, "morley": 10.948357582092285, "##torm": 8.436747550964355, "highlighting": 8.746855735778809, "##oting": 7.732058048248291, "pang": 8.724343299865723, "oblique": 8.360908508300781, "stalled": 9.841207504272461, "##liner": 7.9941511154174805, "flirting": 10.138500213623047, "newborn": 6.845422267913818, "1769": 9.638028144836426, "bishopric": 11.570157051086426, "shaved": 9.326140403747559, "232": 8.094552040100098, "currie": 9.120287895202637, "##ush": 8.045735359191895, "dharma": 9.849745750427246, "spartan": 8.917927742004395, "##ooped": 10.650279998779297, "favorites": 7.487154006958008, "smug": 9.281439781188965, "novella": 9.63111400604248, "sirens": 9.997308731079102, "abusive": 8.680784225463867, "creations": 8.887988090515137, "espana": 10.585592269897461, "##lage": 6.87814998626709, "paradigm": 8.623828887939453, "semiconductor": 8.315983772277832, "sheen": 8.610082626342773, "##rdo": 8.75471305847168, "##yen": 7.776620864868164, "##zak": 9.907093048095703, "nrl": 10.941947937011719, "renew": 6.885423183441162, "##pose": 7.718990802764893, "##tur": 8.08716869354248, "adjutant": 11.049796104431152, "marches": 9.740214347839355, "norma": 8.80923843383789, "##enity": 9.006129264831543, "ineffective": 8.42070198059082, "weimar": 9.537449836730957, "grunt": 9.603924751281738, "##gat": 8.277429580688477, "lordship": 11.558252334594727, "plotting": 9.561260223388672, "expenditure": 7.9941511154174805, "infringement": 9.108983039855957, "lbs": 6.430666923522949, "refrain": 8.597135543823242, "av": 6.032045364379883, "mimi": 9.73829460144043, "mistakenly": 8.304489135742188, "postmaster": 9.744063377380371, "1771": 10.107511520385742, "##bara": 9.0303955078125, "ras": 7.133016109466553, "motorsports": 9.64150333404541, "tito": 10.124295234680176, "199": 7.887735843658447, "subjective": 7.860682964324951, "##zza": 7.706343650817871, "bully": 8.91877269744873, "stew": 7.666673183441162, "##kaya": 10.612804412841797, "prescott": 9.175533294677734, "1a": 7.490592002868652, "##raphic": 9.467777252197266, "##zam": 9.230541229248047, "bids": 8.594078063964844, "styling": 8.258041381835938, "paranormal": 9.463397979736328, "reeve": 10.6082181930542, "sneaking": 10.546113967895508, "exploding": 9.534317016601562, "katz": 9.434680938720703, "akbar": 10.286233901977539, "migrant": 9.443209648132324, "syllables": 7.594681739807129, "indefinitely": 8.273877143859863, "##ogical": 8.760465621948242, "destroys": 8.25586223602295, "replaces": 7.853959560394287, "applause": 10.069412231445312, "##phine": 7.549628734588623, "pest": 6.604886531829834, "##fide": 7.469743251800537, "218": 8.21198844909668, "articulated": 9.264582633972168, "bertie": 11.035661697387695, "##thing": 8.700965881347656, "##cars": 9.454695701599121, "##ptic": 7.4596757888793945, "courtroom": 8.92385482788086, "crowley": 10.107511520385742, "aesthetics": 8.861309051513672, "cummings": 9.751808166503906, "tehsil": 12.073030471801758, "hormones": 5.989930152893066, "titanic": 8.131929397583008, "dangerously": 9.092763900756836, "##ibe": 7.248844146728516, "stadion": 12.454044342041016, "jaenelle": 15.58953857421875, "auguste": 9.773420333862305, "ciudad": 9.946450233459473, "##chu": 7.39890718460083, "mysore": 10.948357582092285, "partisans": 10.844606399536133, "##sio": 7.9931464195251465, "lucan": 10.981040954589844, "philipp": 9.624246597290039, "##aly": 7.2240214347839355, "debating": 9.657293319702148, "henley": 9.713671684265137, "interiors": 9.085749626159668, "##rano": 8.160809516906738, "##tious": 9.015393257141113, "homecoming": 9.600577354431152, "beyonce": 8.64931583404541, "usher": 8.895389556884766, "henrietta": 10.064085960388184, "prepares": 7.819596767425537, "weeds": 7.8357720375061035, "##oman": 8.219938278198242, "ely": 8.970799446105957, "plucked": 9.779396057128906, "##pire": 6.927552700042725, "##dable": 9.353169441223145, "luxurious": 7.929267406463623, "##aq": 8.428951263427734, "artifact": 9.087748527526855, "password": 6.286163330078125, "pasture": 8.315521240234375, "juno": 9.73829460144043, "maddy": 11.25442886352539, "minsk": 11.028668403625488, "##dder": 7.262779712677002, "##ologies": 8.31829833984375, "##rone": 7.99180793762207, "assessments": 7.797602653503418, "martian": 9.459036827087402, "royalist": 10.838826179504395, "1765": 9.214513778686523, "examines": 8.064977645874023, "##mani": 9.684176445007324, "##rge": 7.589972019195557, "nino": 9.169000625610352, "223": 8.222461700439453, "parry": 10.669557571411133, "scooped": 10.39104175567627, "relativity": 9.047547340393066, "##eli": 6.886086940765381, "##uting": 8.55809211730957, "##cao": 9.031340599060059, "congregational": 10.286233901977539, "noisy": 8.691496849060059, "traverse": 8.65060806274414, "##agawa": 10.750615119934082, "strikeouts": 10.816033363342285, "nickelodeon": 8.922158241271973, "obituary": 9.09477710723877, "transylvania": 10.218900680541992, "binds": 7.445827484130859, "depictions": 9.751808166503906, "polk": 8.589812278747559, "trolley": 9.383634567260742, "##yed": 8.620060920715332, "##lard": 9.282655715942383, "breeders": 8.260663986206055, "##under": 8.564593315124512, "dryly": 13.191643714904785, "hokkaido": 9.987420082092285, "1762": 10.182367324829102, "strengths": 7.558044910430908, "stacks": 8.549878120422363, "bonaparte": 9.69697380065918, "connectivity": 8.138490676879883, "neared": 11.317512512207031, "prostitutes": 10.302956581115723, "stamped": 8.172759056091309, "anaheim": 8.728525161743164, "gutierrez": 10.880008697509766, "sinai": 9.064997673034668, "##zzling": 9.017255783081055, "bram": 9.286309242248535, "fresno": 8.771343231201172, "madhya": 10.398435592651367, "##86": 7.55891227722168, "proton": 6.940791130065918, "##lena": 10.188364028930664, "##llum": 9.475119590759277, "##phon": 8.502522468566895, "reelected": 10.567853927612305, "wanda": 9.980066299438477, "##anus": 8.086065292358398, "##lb": 6.706545829772949, "ample": 8.177579879760742, "distinguishing": 8.217840194702148, "##yler": 9.65024471282959, "grasping": 9.412286758422852, "sermons": 10.49578857421875, "tomato": 6.8626790046691895, "bland": 8.50085163116455, "stimulation": 7.3708415031433105, "avenues": 9.232852935791016, "##eux": 10.31653881072998, "spreads": 6.74308967590332, "scarlett": 9.564477920532227, "fern": 8.336068153381348, "pentagon": 8.553977012634277, "assert": 8.626348495483398, "baird": 9.948814392089844, "chesapeake": 8.586170196533203, "ir": 5.529945373535156, "calmed": 11.049796104431152, "distortion": 8.450936317443848, "fatalities": 8.71396255493164, "##olis": 8.01378345489502, "correctional": 8.22752857208252, "pricing": 6.410861015319824, "##astic": 8.089746475219727, "##gina": 6.660456657409668, "prom": 7.4769110679626465, "dammit": 11.909027099609375, "ying": 10.3407621383667, "collaborate": 8.686125755310059, "##chia": 7.501181602478027, "welterweight": 10.636061668395996, "33rd": 9.498983383178711, "pointer": 7.796226978302002, "substitution": 8.08496379852295, "bonded": 7.510024070739746, "umpire": 9.659063339233398, "communicating": 8.112122535705566, "multitude": 8.094182014465332, "paddle": 8.386381149291992, "##obe": 8.238594055175781, "federally": 8.16279125213623, "intimacy": 9.389029502868652, "##insky": 9.763538360595703, "betray": 9.923111915588379, "ssr": 8.446184158325195, "##lett": 9.395813941955566, "##lean": 8.365270614624023, "##lves": 8.981537818908691, "##therapy": 7.462035655975342, "airbus": 9.31226921081543, "##tery": 8.863704681396484, "functioned": 10.191375732421875, "ud": 7.683974266052246, "bearer": 7.954718112945557, "biomedical": 8.433101654052734, "netflix": 7.099716663360596, "##hire": 9.159281730651855, "##nca": 9.269370079040527, "condom": 8.094552040100098, "brink": 8.816840171813965, "ik": 8.129240036010742, "##nical": 9.17444133758545, "macy": 8.759744644165039, "##bet": 6.753600597381592, "flap": 7.963780879974365, "gma": 7.549843788146973, "experimented": 9.582365036010742, "jelly": 7.354796886444092, "lavender": 7.877542018890381, "##icles": 7.09098482131958, "##ulia": 8.634581565856934, "munro": 10.096477508544922, "##mian": 8.739765167236328, "##tial": 7.609400749206543, "rye": 7.7951273918151855, "##rle": 8.285470962524414, "60th": 9.422021865844727, "gigs": 9.907093048095703, "hottest": 7.000521183013916, "rotated": 8.906177520751953, "predictions": 8.226259231567383, "fuji": 8.823731422424316, "bu": 5.6853346824646, "##erence": 9.207722663879395, "##omi": 6.6275315284729, "barangay": 11.711417198181152, "##fulness": 8.307235717773438, "##sas": 8.324808120727539, "clocks": 7.933990478515625, "##rwood": 10.520634651184082, "##liness": 8.389362335205078, "cereal": 6.836535930633545, "roe": 8.319225311279297, "wight": 9.700660705566406, "decker": 9.4446382522583, "uttered": 9.73829460144043, "babu": 10.463592529296875, "onion": 6.586509704589844, "xml": 7.760571479797363, "forcibly": 9.587299346923828, "##df": 8.456242561340332, "petra": 9.37826919555664, "sarcasm": 9.773420333862305, "hartley": 9.916215896606445, "peeled": 8.35656452178955, "storytelling": 9.253893852233887, "##42": 7.4024248123168945, "##xley": 9.916215896606445, "##ysis": 6.691036224365234, "##ffa": 8.66755199432373, "fibre": 7.335703372955322, "kiel": 9.751808166503906, "auditor": 7.518320083618164, "fig": 6.81982421875, "harald": 10.699189186096191, "greenville": 8.556325912475586, "##berries": 7.023618698120117, "geographically": 8.505870819091797, "nell": 9.61912727355957, "quartz": 7.392091751098633, "##athic": 10.34779167175293, "cemeteries": 9.108983039855957, "##lr": 7.892568588256836, "crossings": 9.165750503540039, "nah": 8.285470962524414, "holloway": 10.282922744750977, "reptiles": 7.665225028991699, "chun": 9.849745750427246, "sichuan": 9.932381629943848, "snowy": 8.662961959838867, "660": 7.883525848388672, "corrections": 7.571791648864746, "##ivo": 7.5976080894470215, "zheng": 10.655064582824707, "ambassadors": 9.424820899963379, "blacksmith": 9.21337890625, "fielded": 10.413389205932617, "fluids": 6.545292377471924, "hardcover": 9.535881996154785, "turnover": 8.05566692352295, "medications": 5.513822078704834, "melvin": 9.884645462036133, "academies": 9.617426872253418, "##erton": 10.256819725036621, "ro": 5.90692663192749, "roach": 9.082758903503418, "absorbing": 7.998181343078613, "spaniards": 9.515726089477539, "colton": 10.203516006469727, "##founded": 9.71742057800293, "outsider": 9.849745750427246, "espionage": 9.572568893432617, "kelsey": 9.820176124572754, "245": 8.081665992736816, "edible": 7.2210774421691895, "##ulf": 8.236029624938965, "dora": 8.543472290039062, "establishes": 7.83035135269165, "##sham": 10.313125610351562, "##tries": 7.36510705947876, "contracting": 7.737228870391846, "##tania": 9.600577354431152, "cinematic": 9.023804664611816, "costello": 10.2536039352417, "nesting": 8.436225891113281, "##uron": 6.979158878326416, "connolly": 10.344270706176758, "duff": 9.332509994506836, "##nology": 8.895389556884766, "mma": 9.111028671264648, "##mata": 8.958415985107422, "fergus": 10.766572952270508, "sexes": 8.633310317993164, "gi": 5.791356086730957, "optics": 8.916240692138672, "spectator": 9.551668167114258, "woodstock": 9.3479642868042, "banning": 9.391737937927246, "##hee": 6.173024654388428, "##fle": 7.265202522277832, "differentiate": 7.533217906951904, "outfielder": 9.951184272766113, "refinery": 9.103885650634766, "226": 8.195045471191406, "312": 8.269453048706055, "gerhard": 10.745351791381836, "horde": 9.186516761779785, "lair": 9.73637866973877, "drastically": 8.348889350891113, "##udi": 8.026511192321777, "landfall": 9.390382766723633, "##cheng": 11.272050857543945, "motorsport": 10.487641334533691, "odi": 8.96105670928955, "##achi": 8.101244926452637, "predominant": 8.249351501464844, "quay": 9.934713363647461, "skins": 7.992142200469971, "##ental": 8.165969848632812, "edna": 10.074767112731934, "harshly": 10.499886512756348, "complementary": 7.614203453063965, "murdering": 9.771435737609863, "##aves": 8.78381633758545, "wreckage": 10.323400497436523, "##90": 7.1280694007873535, "ono": 8.444079399108887, "outstretched": 9.925421714782715, "lennox": 9.747928619384766, "munitions": 10.141366004943848, "galen": 9.337635040283203, "reconcile": 9.476593971252441, "470": 8.084229469299316, "scalp": 6.988801002502441, "bicycles": 9.037030220031738, "gillespie": 10.05878734588623, "questionable": 8.84312629699707, "rosenberg": 9.726855278015137, "guillermo": 10.376416206359863, "hostel": 9.636295318603516, "jarvis": 10.14712142944336, "kabul": 10.091005325317383, "volvo": 9.116162300109863, "opium": 8.393851280212402, "yd": 8.383408546447754, "##twined": 9.206595420837402, "abuses": 9.49596881866455, "decca": 10.250399589538574, "outpost": 9.488472938537598, "##cino": 7.013133525848389, "sensible": 8.819131851196289, "neutrality": 9.096794128417969, "##64": 7.503436088562012, "ponce": 10.200467109680176, "anchorage": 8.489236831665039, "atkins": 8.919617652893066, "turrets": 10.91049861907959, "inadvertently": 9.485489845275879, "disagree": 8.04432487487793, "libre": 9.724961280822754, "vodka": 8.123120307922363, "reassuring": 10.152910232543945, "weighs": 6.665947437286377, "##yal": 8.051043510437012, "glide": 8.68947982788086, "jumper": 8.759744644165039, "ceilings": 8.248054504394531, "repertory": 10.659872055053711, "outs": 7.470338344573975, "stain": 6.800436973571777, "##bial": 7.327409744262695, "envy": 8.820662498474121, "##ucible": 9.035130500793457, "smashing": 9.715544700622559, "heightened": 8.975259780883789, "policing": 9.503521919250488, "hyun": 10.724571228027344, "mixes": 7.933990478515625, "lai": 8.314135551452637, "prima": 8.676795959472656, "##ples": 8.897041320800781, "celeste": 10.26978588104248, "##bina": 8.047502517700195, "lucrative": 8.556914329528809, "intervened": 10.689214706420898, "kc": 7.814542770385742, "manually": 7.1831278800964355, "##rned": 9.657293319702148, "stature": 8.685457229614258, "staffed": 9.051399230957031, "bun": 6.880678653717041, "bastards": 11.178762435913086, "nairobi": 9.639764785766602, "priced": 7.015146255493164, "##auer": 10.176405906677246, "thatcher": 9.918508529663086, "##kia": 8.98063850402832, "tripped": 10.19439697265625, "comune": 10.585592269897461, "##ogan": 10.351325035095215, "##pled": 9.809823989868164, "brasil": 9.472175598144531, "incentives": 8.071474075317383, "emanuel": 9.803664207458496, "hereford": 10.080150604248047, "musica": 10.856268882751465, "##kim": 8.112500190734863, "benedictine": 10.550423622131348, "biennale": 12.717859268188477, "##lani": 8.540573120117188, "eureka": 9.429035186767578, "gardiner": 10.31653881072998, "rb": 7.586175441741943, "knocks": 9.847604751586914, "sha": 6.390090465545654, "##ael": 9.302299499511719, "##elled": 9.524978637695312, "##onate": 8.995124816894531, "efficacy": 7.849308967590332, "ventura": 9.086749076843262, "masonic": 9.858357429504395, "sanford": 9.079776763916016, "maize": 8.725735664367676, "leverage": 7.899862766265869, "##feit": 8.270336151123047, "capacities": 8.514857292175293, "santana": 9.75570297241211, "##aur": 8.229222297668457, "novelty": 9.091758728027344, "vanilla": 7.245509147644043, "##cter": 6.560760021209717, "##tour": 7.857461929321289, "benin": 9.648490905761719, "##oir": 8.832993507385254, "##rain": 7.53787899017334, "neptune": 8.03800106048584, "drafting": 8.557502746582031, "tallinn": 11.425460815429688, "##cable": 8.698929786682129, "humiliation": 9.902563095092773, "##boarding": 8.972580909729004, "schleswig": 10.916709899902344, "fabian": 10.424753189086914, "bernardo": 10.483592987060547, "liturgy": 10.2313814163208, "spectacle": 8.96635913848877, "sweeney": 10.035287857055664, "pont": 8.062461853027344, "routledge": 11.500764846801758, "##tment": 8.172358512878418, "cosmos": 9.211112022399902, "ut": 5.402515411376953, "hilt": 10.299589157104492, "sleek": 8.346979141235352, "universally": 8.450407028198242, "##eville": 9.577454566955566, "##gawa": 10.904325485229492, "typed": 8.50979232788086, "##dry": 9.037030220031738, "favors": 8.759024620056152, "allegheny": 8.996037483215332, "glaciers": 8.264609336853027, "##rly": 8.815315246582031, "recalling": 9.620831489562988, "aziz": 10.200467109680176, "##log": 6.833695888519287, "parasite": 7.845835208892822, "requiem": 10.563467979431152, "auf": 10.030139923095703, "##berto": 10.417162895202637, "##llin": 7.388792991638184, "illumination": 8.816840171813965, "##breaker": 9.980066299438477, "##issa": 9.117192268371582, "festivities": 9.136963844299316, "bows": 8.907848358154297, "govern": 7.530894756317139, "vibe": 8.744723320007324, "vp": 7.683974266052246, "333": 8.007309913635254, "sprawled": 11.89236068725586, "larson": 9.588949203491211, "pilgrim": 9.597241401672363, "bwf": 12.796330451965332, "leaping": 9.91392707824707, "##rts": 8.36965274810791, "##ssel": 8.133854866027832, "alexei": 10.961302757263184, "greyhound": 9.055265426635742, "hoarse": 8.64609432220459, "##dler": 9.64150333404541, "##oration": 9.149656295776367, "seneca": 9.089751243591309, "##cule": 7.99784517288208, "gaping": 10.563467979431152, "##ulously": 9.967930793762207, "##pura": 10.467560768127441, "cinnamon": 7.418504238128662, "##gens": 7.459479808807373, "##rricular": 9.362343788146973, "craven": 10.209641456604004, "fantasies": 10.104742050170898, "houghton": 9.624246597290039, "engined": 10.516449928283691, "reigned": 9.276594161987305, "dictator": 8.574125289916992, "supervising": 9.021928787231445, "##oris": 8.281888961791992, "bogota": 10.064085960388184, "commentaries": 10.424753189086914, "unnatural": 9.19205379486084, "fingernails": 8.490337371826172, "spirituality": 8.924704551696777, "tighten": 7.832059860229492, "##tm": 7.138271808624268, "canadiens": 10.447875022888184, "protesting": 10.118669509887695, "intentional": 8.27520751953125, "cheers": 8.978842735290527, "sparta": 8.78307819366455, "##ytic": 7.4044671058654785, "##iere": 8.898695945739746, "##zine": 8.19997501373291, "widen": 8.746855735778809, "belgarath": 1.0, "controllers": 8.349844932556152, "dodd": 9.198739051818848, "iaaf": 10.922959327697754, "navarre": 10.4058837890625, "##ication": 7.980172157287598, "defect": 7.326377868652344, "squire": 10.091005325317383, "steiner": 10.398435592651367, "whisky": 9.046586036682129, "##mins": 8.343170166015625, "560": 7.681028842926025, "inevitably": 8.934956550598145, "tome": 9.546905517578125, "##gold": 8.863704681396484, "chew": 7.228999137878418, "##uid": 8.713274002075195, "##lid": 7.077491760253906, "elastic": 6.99310302734375, "##aby": 8.133084297180176, "streaked": 10.164588928222656, "alliances": 9.19205379486084, "jailed": 9.960719108581543, "regal": 8.870927810668945, "##ined": 8.775727272033691, "##phy": 6.526345729827881, "czechoslovak": 11.739391326904297, "narration": 9.466315269470215, "absently": 13.743711471557617, "##uld": 7.87933349609375, "bluegrass": 9.045626640319824, "guangdong": 10.209641456604004, "quran": 9.303540229797363, "criticizing": 10.228246688842773, "hose": 7.118808269500732, "hari": 8.919617652893066, "##liest": 8.04432487487793, "##owa": 8.75471305847168, "skier": 9.12755012512207, "streaks": 8.822962760925293, "deploy": 8.003242492675781, "##lom": 7.155364990234375, "raft": 8.238166809082031, "bose": 9.394453048706055, "dialed": 9.259818077087402, "huff": 9.026623725891113, "##eira": 10.724571228027344, "haifa": 11.071379661560059, "simplest": 7.068286895751953, "bursting": 9.053330421447754, "endings": 8.441454887390137, "ib": 6.316505432128906, "sultanate": 10.398435592651367, "##titled": 10.209641456604004, "franks": 9.437515258789062, "whitman": 9.313522338867188, "ensures": 7.316457271575928, "sven": 10.467560768127441, "##ggs": 9.948814392089844, "collaborators": 10.14423942565918, "forster": 10.398435592651367, "organising": 10.337265014648438, "ui": 7.364749908447266, "banished": 10.179381370544434, "napier": 10.724571228027344, "injustice": 9.028508186340332, "teller": 8.552803993225098, "layered": 8.239879608154297, "thump": 10.455702781677246, "##otti": 7.3645710945129395, "roc": 8.265488624572754, "battleships": 10.432400703430176, "evidenced": 9.147529602050781, "fugitive": 9.045626640319824, "sadie": 10.222005844116211, "robotics": 9.140122413635254, "##roud": 8.922158241271973, "equatorial": 8.654492378234863, "geologist": 8.451994895935059, "##iza": 7.909055233001709, "yielding": 8.626348495483398, "##bron": 8.313213348388672, "##sr": 8.004596710205078, "internationale": 10.309724807739258, "mecca": 9.122357368469238, "##diment": 7.911520957946777, "sbs": 10.11586856842041, "skyline": 8.819131851196289, "toad": 8.65060806274414, "uploaded": 8.27520751953125, "reflective": 8.376506805419922, "undrafted": 10.87402057647705, "lal": 9.032286643981934, "leafs": 9.882428169250488, "bayern": 10.745351791381836, "##dai": 8.64609432220459, "lakshmi": 10.337265014648438, "shortlisted": 11.457042694091797, "##stick": 7.924566745758057, "##wicz": 10.821682929992676, "camouflage": 8.795699119567871, "donate": 7.476511478424072, "af": 6.157309055328369, "christi": 8.994213104248047, "lau": 7.591987609863281, "##acio": 10.237680435180664, "disclosed": 8.59652328491211, "nemesis": 9.622537612915039, "1761": 10.26978588104248, "assemble": 7.970632553100586, "straining": 8.651254653930664, "northamptonshire": 11.056939125061035, "tal": 7.623414516448975, "##asi": 7.325862407684326, "bernardino": 8.806968688964844, "premature": 7.518320083618164, "heidi": 9.280226707458496, "42nd": 9.3518648147583, "coefficients": 9.149656295776367, "galactic": 9.102869987487793, "reproduce": 7.305623531341553, "buzzed": 10.838826179504395, "sensations": 7.763494491577148, "zionist": 10.636061668395996, "monsieur": 10.626693725585938, "myrtle": 8.345549583435059, "##eme": 7.37354040145874, "archery": 9.29488754272461, "strangled": 10.766572952270508, "musically": 10.200467109680176, "viewpoint": 8.614436149597168, "antiquities": 10.567853927612305, "bei": 9.113079071044922, "trailers": 7.923004627227783, "seahawks": 9.243317604064941, "cured": 7.542135715484619, "pee": 7.554367542266846, "preferring": 9.702508926391602, "tasmanian": 9.93005657196045, "lange": 8.71396255493164, "sul": 6.672630310058594, "##mail": 7.719245433807373, "##working": 8.526205062866211, "colder": 7.586398601531982, "overland": 9.302299499511719, "lucivar": 1.0, "massey": 10.279622077941895, "gatherings": 9.379608154296875, "haitian": 9.296119689941406, "##smith": 9.287530899047852, "disapproval": 9.520341873168945, "flaws": 8.940122604370117, "##cco": 6.756319046020508, "##enbach": 10.766572952270508, "1766": 9.828536033630371, "npr": 9.06695556640625, "##icular": 7.248366832733154, "boroughs": 9.015393257141113, "creole": 8.690824508666992, "forums": 7.354089736938477, "techno": 7.773390293121338, "1755": 9.660836219787598, "dent": 7.12919807434082, "abdominal": 5.973844051361084, "streetcar": 10.007296562194824, "##eson": 9.424820899963379, "##stream": 6.730412006378174, "procurement": 8.120835304260254, "gemini": 8.94879150390625, "predictable": 8.21157169342041, "##tya": 10.043060302734375, "acheron": 11.978620529174805, "christoph": 10.72972583770752, "feeder": 7.949575901031494, "fronts": 8.634581565856934, "vendor": 7.501795768737793, "bernhard": 10.463592529296875, "jammu": 10.563467979431152, "tumors": 6.756999492645264, "slang": 6.909829616546631, "##uber": 8.905344009399414, "goaltender": 10.669557571411133, "twists": 8.871733665466309, "curving": 9.706216812133789, "manson": 9.595577239990234, "vuelta": 12.318702697753906, "mer": 6.12442684173584, "peanut": 7.364035606384277, "confessions": 10.037872314453125, "pouch": 7.733606338500977, "unpredictable": 8.262853622436523, "allowance": 6.811880588531494, "theodor": 9.313522338867188, "vascular": 6.853960037231445, "##factory": 8.30357551574707, "bala": 8.78381633758545, "authenticity": 8.908683776855469, "metabolic": 6.694777011871338, "coughing": 7.233845233917236, "nanjing": 10.463592529296875, "##cea": 8.11287784576416, "pembroke": 9.529637336730957, "##bard": 9.719300270080566, "splendid": 9.423420906066895, "36th": 9.500494003295898, "ff": 7.643274784088135, "hourly": 5.992644309997559, "##ahu": 8.605131149291992, "elmer": 9.761573791503906, "handel": 10.06674575805664, "##ivate": 7.878139019012451, "awarding": 9.494464874267578, "thrusting": 10.6082181930542, "dl": 6.6956915855407715, "experimentation": 9.076803207397461, "##hesion": 8.008328437805176, "##46": 7.574431419372559, "caressed": 12.645099639892578, "entertained": 9.398540496826172, "steak": 6.49434757232666, "##rangle": 9.65024471282959, "biologist": 8.034505844116211, "orphans": 10.085562705993652, "baroness": 11.001175880432129, "oyster": 7.794029235839844, "stepfather": 9.88686752319336, "##dridge": 9.878008842468262, "mirage": 9.52188491821289, "reefs": 8.513166427612305, "speeding": 8.374053955078125, "##31": 7.2989115715026855, "barons": 10.1853609085083, "1764": 9.744063377380371, "227": 8.200798988342285, "inhabit": 7.584839344024658, "preached": 10.256819725036621, "repealed": 8.956659317016602, "##tral": 7.883525848388672, "honoring": 8.90201473236084, "boogie": 9.66974925994873, "captives": 10.664703369140625, "administer": 7.327237606048584, "johanna": 10.118669509887695, "##imate": 8.232194900512695, "gel": 6.272708415985107, "suspiciously": 11.162697792053223, "1767": 9.622537612915039, "sobs": 12.09303092956543, "##dington": 10.402153015136719, "backbone": 7.672245502471924, "hayward": 9.51266098022461, "garry": 9.937049865722656, "##folding": 9.10185432434082, "##nesia": 8.610703468322754, "maxi": 7.920198917388916, "##oof": 8.97169017791748, "##ppe": 8.743304252624512, "ellison": 9.371603012084961, "galileo": 8.949663162231445, "##stand": 8.404909133911133, "crimea": 9.992352485656738, "frenzy": 9.671541213989258, "amour": 10.91049861907959, "bumper": 8.333711624145508, "matrices": 9.624246597290039, "natalia": 10.524836540222168, "baking": 5.972777843475342, "garth": 9.667960166931152, "palestinians": 10.612804412841797, "##grove": 10.019922256469727, "smack": 9.481032371520996, "conveyed": 8.947921752929688, "ensembles": 10.167530059814453, "gardening": 8.108734130859375, "##manship": 8.780867576599121, "##rup": 7.621334552764893, "##stituting": 8.246328353881836, "1640": 9.622537612915039, "harvesting": 8.12426471710205, "topography": 8.603897094726562, "jing": 10.043060302734375, "shifters": 10.862151145935059, "dormitory": 10.512283325195312, "##carriage": 7.846702575683594, "##lston": 9.939391136169434, "ist": 7.0030059814453125, "skulls": 9.747928619384766, "##stadt": 10.323400497436523, "dolores": 9.69881534576416, "jewellery": 9.167916297912598, "sarawak": 11.178762435913086, "##wai": 8.320618629455566, "##zier": 9.561260223388672, "fences": 8.523356437683105, "christy": 10.124295234680176, "confinement": 8.86450481414795, "tumbling": 9.72307014465332, "credibility": 8.829896926879883, "fir": 8.384893417358398, "stench": 10.483592987060547, "##bria": 8.787514686584473, "##plication": 7.472325801849365, "##nged": 8.493645668029785, "##sam": 6.785313606262207, "virtues": 9.159281730651855, "##belt": 9.08176326751709, "marjorie": 9.893564224243164, "pba": 10.724571228027344, "##eem": 7.710625648498535, "##made": 8.159226417541504, "celebrates": 8.039402961730957, "schooner": 10.6082181930542, "agitated": 9.592257499694824, "barley": 7.544698715209961, "fulfilling": 8.628874778747559, "anthropologist": 9.067935943603516, "##pro": 5.730090141296387, "restrict": 7.566532611846924, "novi": 9.775407791137695, "regulating": 7.670303821563721, "##nent": 8.338430404663086, "padres": 9.941739082336426, "##rani": 8.610082626342773, "##hesive": 7.180302143096924, "loyola": 9.937049865722656, "tabitha": 11.25442886352539, "milky": 8.08716869354248, "olson": 9.71742057800293, "proprietor": 8.12579345703125, "crambidae": 1.0, "guarantees": 7.9654083251953125, "intercollegiate": 9.891326904296875, "ljubljana": 11.435877799987793, "hilda": 10.72972583770752, "##sko": 8.910358428955078, "ignorant": 9.221351623535156, "hooded": 10.358429908752441, "##lts": 8.117417335510254, "sardinia": 9.605602264404297, "##lidae": 9.816022872924805, "##vation": 8.368189811706543, "frontman": 9.350563049316406, "privileged": 9.052364349365234, "witchcraft": 9.27418041229248, "##gp": 8.100499153137207, "jammed": 10.040462493896484, "laude": 9.523430824279785, "poking": 9.706216812133789, "##than": 7.681028842926025, "bracket": 7.591091156005859, "amazement": 10.640778541564941, "yunnan": 10.585592269897461, "##erus": 6.543247699737549, "maharaja": 11.594400405883789, "linnaeus": 9.301060676574707, "264": 8.251951217651367, "commissioning": 9.682361602783203, "milano": 10.4058837890625, "peacefully": 9.259818077087402, "##logies": 9.103885650634766, "akira": 10.724571228027344, "rani": 9.044668197631836, "regulator": 8.101244926452637, "##36": 7.281668186187744, "grasses": 7.672731399536133, "##rance": 8.862107276916504, "luzon": 10.080150604248047, "crows": 9.328682899475098, "compiler": 8.69351863861084, "gretchen": 10.512283325195312, "seaman": 9.898054122924805, "edouard": 10.669557571411133, "tab": 5.502216815948486, "buccaneers": 10.167530059814453, "ellington": 10.2536039352417, "hamlets": 10.337265014648438, "whig": 9.322338104248047, "socialists": 10.33030891418457, "##anto": 8.721564292907715, "directorial": 10.206573486328125, "easton": 9.121322631835938, "mythological": 9.009824752807617, "##kr": 8.025127410888672, "##vary": 7.6395063400268555, "rhineland": 10.0720853805542, "semantic": 9.006129264831543, "taut": 9.316032409667969, "dune": 9.475119590759277, "inventions": 8.37014102935791, "succeeds": 9.629392623901367, "##iter": 7.777430057525635, "replication": 7.4379167556762695, "branched": 8.437270164489746, "##pired": 9.391737937927246, "jul": 7.137275218963623, "prosecuted": 9.299822807312012, "kangaroo": 8.502522468566895, "penetrated": 9.847604751586914, "##avian": 8.934956550598145, "middlesbrough": 11.425460815429688, "doses": 6.474864959716797, "bleak": 9.676937103271484, "madam": 9.492963790893555, "predatory": 9.120287895202637, "relentless": 9.163589477539062, "##vili": 10.007296562194824, "reluctance": 10.012328147888184, "##vir": 7.945736408233643, "hailey": 10.554753303527832, "crore": 9.67333698272705, "silvery": 8.587383270263672, "1759": 10.002289772033691, "monstrous": 9.803664207458496, "swimmers": 8.81075382232666, "transmissions": 8.791226387023926, "hawthorn": 10.152910232543945, "informing": 9.270570755004883, "##eral": 7.18566370010376, "toilets": 8.559270858764648, "caracas": 10.27633285522461, "crouch": 9.916215896606445, "kb": 7.6053032875061035, "##sett": 8.666237831115723, "295": 8.23389720916748, "cartel": 9.657293319702148, "hadley": 10.069412231445312, "##aling": 9.236329078674316, "alexia": 11.007978439331055, "yvonne": 9.944091796875, "##biology": 8.412519454956055, "cinderella": 9.207722663879395, "eton": 10.2313814163208, "superb": 8.045735359191895, "blizzard": 8.678788185119629, "stabbing": 8.775727272033691, "industrialist": 9.816022872924805, "maximus": 9.128591537475586, "##gm": 6.667992115020752, "##orus": 9.153923034667969, "groves": 9.56609058380127, "maud": 9.638028144836426, "clade": 9.64673900604248, "oversized": 8.886350631713867, "comedic": 9.401274681091309, "##bella": 8.765527725219727, "rosen": 8.908683776855469, "nomadic": 9.0659761428833, "fulham": 11.404947280883789, "montane": 10.581128120422363, "beverages": 6.987698078155518, "galaxies": 8.80621337890625, "redundant": 8.943581581115723, "swarm": 9.019123077392578, "##rot": 6.702392578125, "##folia": 8.087535858154297, "##llis": 8.748279571533203, "buckinghamshire": 10.740116119384766, "fen": 7.247413158416748, "bearings": 8.479931831359863, "bahadur": 11.272050857543945, "##rom": 5.741087913513184, "gilles": 10.816033363342285, "phased": 8.989667892456055, "dynamite": 9.884645462036133, "faber": 10.260046005249023, "benoit": 10.740116119384766, "vip": 8.40137767791748, "##ount": 8.822962760925293, "##wd": 7.97852087020874, "booking": 7.124270439147949, "fractured": 8.572331428527832, "tailored": 8.120074272155762, "anya": 10.533292770385742, "spices": 7.071612358093262, "westwood": 9.856197357177734, "cairns": 9.79145622253418, "auditions": 9.797541618347168, "inflammation": 5.41298770904541, "steamed": 8.256733894348145, "##rocity": 9.145407676696777, "##acion": 9.934713363647461, "##urne": 8.99695110321045, "skyla": 9.785408020019531, "thereof": 8.063539505004883, "watford": 11.021724700927734, "torment": 9.873607635498047, "archdeacon": 11.996803283691406, "transforms": 8.624458312988281, "lulu": 9.843335151672363, "demeanor": 9.864864349365234, "fucked": 10.78278923034668, "serge": 9.946450233459473, "##sor": 7.075751304626465, "mckenna": 10.2313814163208, "minas": 10.941947937011719, "entertainer": 8.696220397949219, "##icide": 7.6494293212890625, "caress": 11.28998851776123, "originate": 7.691127300262451, "residue": 7.878139019012451, "##sty": 7.225729465484619, "1740": 9.753753662109375, "##ilised": 10.012328147888184, "##org": 6.809622287750244, "beech": 8.78825569152832, "##wana": 9.610652923583984, "subsidies": 8.924704551696777, "##ghton": 10.282922744750977, "emptied": 9.537449836730957, "gladstone": 10.455702781677246, "ru": 6.18849515914917, "firefighters": 8.605131149291992, "voodoo": 10.01738452911377, "##rcle": 8.574125289916992, "het": 6.928937911987305, "nightingale": 10.091005325317383, "tamara": 9.856197357177734, "edmond": 9.40676498413086, "ingredient": 6.286953449249268, "weaknesses": 8.201210975646973, "silhouette": 8.80923843383789, "285": 8.119314193725586, "compatibility": 7.877542018890381, "withdrawing": 9.128591537475586, "hampson": 13.024589538574219, "##mona": 8.331360816955566, "anguish": 9.994827270507812, "giggling": 11.512001037597656, "##mber": 7.965733528137207, "bookstore": 9.104903221130371, "##jiang": 10.622042655944824, "southernmost": 8.832219123840332, "tilting": 9.63111400604248, "##vance": 8.330422401428223, "bai": 8.698251724243164, "economical": 7.925504684448242, "rf": 7.5417094230651855, "briefcase": 10.05089282989502, "dreadful": 9.867043495178223, "hinted": 9.830636978149414, "projections": 7.88412618637085, "shattering": 10.215805053710938, "totaling": 8.546379089355469, "##rogate": 8.880640983581543, "analogue": 9.031340599060059, "indicted": 9.728752136230469, "periodical": 9.753753662109375, "fullback": 11.178762435913086, "##dman": 8.943581581115723, "haynes": 10.032711029052734, "##tenberg": 10.3407621383667, "##ffs": 8.895389556884766, "##ishment": 8.4398832321167, "1745": 10.170479774475098, "thirst": 8.046794891357422, "stumble": 9.321073532104492, "penang": 10.821682929992676, "vigorous": 8.04432487487793, "##ddling": 9.579089164733887, "##kor": 8.751848220825195, "##lium": 8.278765678405762, "octave": 8.967246055603027, "##ove": 7.095341205596924, "##enstein": 10.402153015136719, "##inen": 7.97720193862915, "##ones": 8.291318893432617, "siberian": 8.590420722961426, "##uti": 7.305455207824707, "cbn": 10.206573486328125, "repeal": 8.660347938537598, "swaying": 10.176405906677246, "##vington": 9.366301536560059, "khalid": 10.77194881439209, "tanaka": 11.28097915649414, "unicorn": 9.332509994506836, "otago": 11.203353881835938, "plastered": 10.766572952270508, "lobe": 7.465190410614014, "riddle": 8.81379222869873, "##rella": 8.47341537475586, "perch": 8.425849914550781, "##ishing": 9.013533592224121, "croydon": 11.035661697387695, "filtered": 7.874563694000244, "graeme": 11.108421325683594, "tripoli": 10.132794380187988, "##ossa": 8.52392578125, "crocodile": 8.42070198059082, "##chers": 9.327410697937012, "sufi": 10.533292770385742, "mined": 8.363329887390137, "##tung": 10.745351791381836, "inferno": 10.127120018005371, "lsu": 9.37826919555664, "##phi": 6.507978916168213, "swelled": 10.333781242370605, "utilizes": 7.933359146118164, "\u00a32": 7.35638952255249, "cale": 8.883084297180176, "periodicals": 9.602249145507812, "styx": 10.39104175567627, "hike": 7.401683330535889, "informally": 8.583145141601562, "coop": 9.064020156860352, "lund": 9.390382766723633, "##tidae": 10.302956581115723, "ala": 7.171134948730469, "hen": 5.874370574951172, "qui": 6.4482269287109375, "transformations": 8.828351974487305, "disposed": 8.81379222869873, "sheath": 7.699580192565918, "chickens": 7.518736839294434, "##cade": 9.309767723083496, "fitzroy": 11.489653587341309, "sas": 7.797602653503418, "silesia": 10.83307933807373, "unacceptable": 8.803951263427734, "odisha": 11.021724700927734, "1650": 9.270570755004883, "sabrina": 9.916215896606445, "pe": 5.1043291091918945, "spokane": 8.898695945739746, "ratios": 7.716702461242676, "athena": 8.970799446105957, "massage": 7.055095195770264, "shen": 8.691496849060059, "dilemma": 8.77792739868164, "##drum": 8.285470962524414, "##riz": 7.046223163604736, "##hul": 8.343646049499512, "corona": 6.733542442321777, "doubtful": 9.371603012084961, "niall": 10.247204780578613, "##pha": 5.635278701782227, "##bino": 8.202035903930664, "fines": 7.857754230499268, "cite": 7.353206157684326, "acknowledging": 9.588949203491211, "bangor": 9.937049865722656, "ballard": 9.939391136169434, "bathurst": 11.14688777923584, "##resh": 7.313058853149414, "huron": 9.020057678222656, "mustered": 11.909027099609375, "alzheimer": 7.3551506996154785, "garments": 8.603280067443848, "kinase": 8.807724952697754, "tyre": 9.107961654663086, "warship": 10.045663833618164, "##cp": 7.610542297363281, "flashback": 9.562868118286133, "pulmonary": 6.58856201171875, "braun": 9.064020156860352, "cheat": 7.876945972442627, "kamal": 10.170479774475098, "cyclists": 9.523430824279785, "constructions": 9.620831489562988, "grenades": 10.810415267944336, "ndp": 10.987707138061523, "traveller": 9.25862979888916, "excuses": 9.773420333862305, "stomped": 11.960762977600098, "signalling": 9.824347496032715, "trimmed": 8.376998901367188, "futsal": 11.725306510925293, "mosques": 10.459639549255371, "relevance": 7.902611255645752, "##wine": 9.251533508300781, "wta": 10.440108299255371, "##23": 7.200406074523926, "##vah": 8.732726097106934, "##lter": 8.364785194396973, "hoc": 8.14978313446045, "##riding": 9.532754898071289, "optimistic": 8.99695110321045, "##\u00b4s": 8.9111967086792, "deco": 6.666569232940674, "sim": 6.005544662475586, "interacting": 8.496965408325195, "rejecting": 9.443209648132324, "moniker": 9.194276809692383, "waterways": 8.868515014648438, "##ieri": 10.14423942565918, "##oku": 8.895389556884766, "mayors": 10.014852523803711, "gdansk": 11.131322860717773, "outnumbered": 10.05351734161377, "pearls": 8.883084297180176, "##ended": 8.605749130249023, "##hampton": 10.563467979431152, "fairs": 9.126508712768555, "totals": 8.033459663391113, "dominating": 9.314776420593262, "262": 8.342695236206055, "notions": 9.255075454711914, "stairway": 9.366301536560059, "compiling": 9.399906158447266, "pursed": 11.384845733642578, "commodities": 8.26636791229248, "grease": 7.273320198059082, "yeast": 6.42933464050293, "##jong": 10.59458065032959, "carthage": 9.456140518188477, "griffiths": 10.679337501525879, "residual": 7.873374938964844, "amc": 8.242453575134277, "contraction": 6.484595775604248, "laird": 11.001175880432129, "sapphire": 8.367216110229492, "##marine": 9.447501182556152, "##ivated": 8.990575790405273, "amalgamation": 10.129953384399414, "dissolve": 6.903728485107422, "inclination": 9.000612258911133, "lyle": 9.843335151672363, "packaged": 7.521866798400879, "altitudes": 8.63776683807373, "suez": 9.607282638549805, "canons": 10.714341163635254, "graded": 8.031022071838379, "lurched": 12.577277183532715, "narrowing": 7.773390293121338, "boasts": 7.75712776184082, "guise": 9.76747989654541, "wed": 7.700829029083252, "enrico": 10.77735424041748, "##ovsky": 11.263200759887695, "rower": 10.6082181930542, "scarred": 9.728752136230469, "bree": 8.530780792236328, "cub": 7.862738132476807, "iberian": 9.037030220031738, "protagonists": 9.73829460144043, "bargaining": 8.683451652526855, "proposing": 9.165750503540039, "trainers": 8.19258975982666, "voyages": 9.426223754882812, "vans": 8.614436149597168, "fishes": 8.5475435256958, "##aea": 8.126175880432129, "##ivist": 9.124431610107422, "##verance": 8.7525634765625, "encryption": 8.145484924316406, "artworks": 10.009808540344238, "kazan": 10.761224746704102, "sabre": 10.107511520385742, "cleopatra": 9.562868118286133, "hepburn": 9.306026458740234, "rotting": 8.996037483215332, "supremacy": 9.138015747070312, "mecklenburg": 10.037872314453125, "##brate": 7.78773832321167, "burrows": 8.847050666809082, "hazards": 7.5563130378723145, "outgoing": 8.288616180419922, "flair": 8.905344009399414, "organizes": 9.24917984008789, "##ctions": 8.330422401428223, "scorpion": 8.607604026794434, "##usions": 8.307235717773438, "boo": 7.556745529174805, "234": 8.16636848449707, "chevalier": 10.941947937011719, "dunedin": 10.467560768127441, "slapping": 10.64551830291748, "##34": 7.473719120025635, "ineligible": 9.19762134552002, "pensions": 8.605749130249023, "##38": 7.418315887451172, "##omic": 8.27210521697998, "manufactures": 7.988802909851074, "emails": 7.435421943664551, "bismarck": 9.413671493530273, "238": 8.199151992797852, "weakening": 8.819896697998047, "blackish": 10.121478080749512, "ding": 8.515421867370605, "mcgee": 10.025017738342285, "quo": 7.378236770629883, "##rling": 9.40676498413086, "northernmost": 8.891270637512207, "xx": 7.61879825592041, "manpower": 9.390382766723633, "greed": 9.259818077087402, "sampson": 10.118669509887695, "clicking": 6.534566402435303, "##ange": 7.943184852600098, "##horpe": 10.209641456604004, "##inations": 8.149392127990723, "##roving": 9.029451370239258, "torre": 8.473957061767578, "##eptive": 8.28906536102295, "##moral": 7.850469589233398, "symbolism": 7.856293201446533, "38th": 9.539019584655762, "asshole": 10.27633285522461, "meritorious": 10.67443561553955, "outfits": 9.006129264831543, "splashed": 10.516449928283691, "biographies": 9.153923034667969, "sprung": 9.74213695526123, "astros": 9.704360961914062, "##tale": 8.444605827331543, "302": 8.262414932250977, "737": 8.709839820861816, "filly": 10.626693725585938, "raoul": 10.810415267944336, "nw": 7.799808025360107, "tokugawa": 10.299589157104492, "linden": 9.299822807312012, "clubhouse": 9.551668167114258, "##apa": 8.477210998535156, "tracts": 8.375524520874023, "romano": 9.25862979888916, "##pio": 8.23389720916748, "putin": 8.988761901855469, "tags": 6.848615646362305, "##note": 8.076921463012695, "chained": 9.994827270507812, "dickson": 10.099224090576172, "gunshot": 9.341495513916016, "moe": 8.828351974487305, "gunn": 8.962821006774902, "rashid": 10.228246688842773, "##tails": 8.116280555725098, "zipper": 8.963704109191895, "##bas": 7.718736171722412, "##nea": 6.980617523193359, "contrasted": 8.7525634765625, "##ply": 6.231611728668213, "##udes": 8.5359525680542, "plum": 7.06166934967041, "pharaoh": 8.585564613342285, "##pile": 8.126940727233887, "aw": 7.05051851272583, "comedies": 9.438936233520508, "ingrid": 10.27633285522461, "sandwiches": 7.9136834144592285, "subdivisions": 8.74970531463623, "1100": 8.232194900512695, "mariana": 8.757585525512695, "nokia": 8.769158363342285, "kamen": 10.59458065032959, "hz": 8.13000774383545, "delaney": 10.546113967895508, "veto": 8.4171142578125, "herring": 8.61132526397705, "##words": 7.652521133422852, "possessive": 9.057204246520996, "outlines": 7.911520957946777, "##roup": 9.225935935974121, "siemens": 9.526529312133789, "stairwell": 10.766572952270508, "rc": 7.4421539306640625, "gallantry": 11.115997314453125, "messiah": 9.75765609741211, "palais": 10.636061668395996, "yells": 10.987707138061523, "233": 8.239450454711914, "zeppelin": 9.506559371948242, "##dm": 7.8229804039001465, "bolivar": 9.745994567871094, "##cede": 8.134625434875488, "smackdown": 10.19439697265625, "mckinley": 8.72922420501709, "##mora": 9.653762817382812, "##yt": 6.0879974365234375, "muted": 9.75570297241211, "geologic": 8.248054504394531, "finely": 8.045735359191895, "unitary": 9.31226921081543, "avatar": 8.737648963928223, "hamas": 11.108421325683594, "maynard": 9.81188678741455, "rees": 9.40952205657959, "bog": 7.722050189971924, "contrasting": 8.726431846618652, "##rut": 7.7613677978515625, "liv": 8.22668170928955, "chico": 8.896215438842773, "disposition": 8.006291389465332, "pixel": 8.389362335205078, "##erate": 8.281442642211914, "becca": 10.719443321228027, "dmitry": 10.916709899902344, "yeshiva": 11.570157051086426, "narratives": 9.653762817382812, "##lva": 7.745297908782959, "##ulton": 10.096477508544922, "mercenary": 10.155817031860352, "sharpe": 8.133084297180176, "tempered": 8.81607723236084, "navigate": 7.062725067138672, "stealth": 8.946183204650879, "amassed": 9.719300270080566, "keynes": 9.745994567871094, "##lini": 8.835323333740234, "untouched": 9.51266098022461, "##rrie": 9.13381576538086, "havoc": 8.89209270477295, "lithium": 7.7951273918151855, "##fighting": 9.253893852233887, "abyss": 9.10185432434082, "graf": 7.656100273132324, "southward": 9.371603012084961, "wolverine": 9.184309959411621, "balloons": 8.890448570251465, "implements": 8.523356437683105, "ngos": 9.992352485656738, "transitions": 8.556914329528809, "##icum": 8.906177520751953, "ambushed": 10.935578346252441, "concacaf": 11.435877799987793, "dormant": 7.967037677764893, "economists": 8.59224796295166, "##dim": 8.792715072631836, "costing": 7.685204029083252, "csi": 9.143289566040039, "rana": 10.05878734588623, "universite": 11.162697792053223, "boulders": 9.489967346191406, "verity": 11.512001037597656, "##llon": 9.509605407714844, "collin": 9.248003959655762, "mellon": 9.73637866973877, "misses": 9.240982055664062, "cypress": 8.546379089355469, "fluorescent": 8.311369895935059, "lifeless": 10.228246688842773, "spence": 10.585592269897461, "##ulla": 7.606212139129639, "crewe": 10.302956581115723, "shepard": 9.434680938720703, "pak": 8.899524688720703, "revelations": 9.93005657196045, "##\u0645": 9.151786804199219, "jolly": 9.65024471282959, "gibbons": 9.987420082092285, "paw": 8.37160587310791, "##dro": 6.993226051330566, "##quel": 8.999695777893066, "freeing": 9.537449836730957, "##test": 6.994582176208496, "shack": 8.71396255493164, "fries": 7.7139129638671875, "palatine": 9.620831489562988, "##51": 7.636923789978027, "##hiko": 10.740116119384766, "accompaniment": 9.17444133758545, "cruising": 8.818367004394531, "recycled": 7.919576644897461, "##aver": 7.924253940582275, "erwin": 10.004790306091309, "sorting": 8.514857292175293, "synthesizers": 10.83307933807373, "dyke": 9.765506744384766, "realities": 9.437515258789062, "sg": 7.969650745391846, "strides": 9.685995101928711, "enslaved": 9.327410697937012, "wetland": 9.091758728027344, "##ghan": 10.01738452911377, "competence": 8.479931831359863, "gunpowder": 9.40676498413086, "grassy": 8.98063850402832, "maroon": 8.968132972717285, "reactors": 9.02099323272705, "objection": 9.017255783081055, "##oms": 8.05852222442627, "carlson": 9.466315269470215, "gearbox": 9.451811790466309, "macintosh": 9.017255783081055, "radios": 8.935815811157227, "shelton": 9.146468162536621, "##sho": 7.611684799194336, "clergyman": 10.091005325317383, "prakash": 11.14688777923584, "254": 8.179594993591309, "mongols": 10.167530059814453, "trophies": 9.514192581176758, "oricon": 13.07723331451416, "228": 8.21867847442627, "stimuli": 7.800912380218506, "twenty20": 11.843963623046875, "cantonese": 9.447501182556152, "cortes": 9.588949203491211, "mirrored": 9.730653762817383, "##saurus": 6.716584205627441, "bhp": 9.895806312561035, "cristina": 10.3407621383667, "melancholy": 10.085562705993652, "##lating": 8.332771301269531, "enjoyable": 8.098264694213867, "nuevo": 9.680550575256348, "##wny": 9.638028144836426, "downfall": 9.44178295135498, "schumacher": 10.689214706420898, "##ind": 7.378056049346924, "banging": 9.982511520385742, "lausanne": 10.856268882751465, "rumbled": 11.960762977600098, "paramilitary": 10.420949935913086, "reflex": 7.268928050994873, "ax": 6.747897624969482, "amplitude": 8.148609161376953, "migratory": 9.224787712097168, "##gall": 9.715544700622559, "##ups": 7.724094867706299, "midi": 9.10084056854248, "barnard": 10.292889595031738, "lastly": 8.56994342803955, "sherry": 9.025683403015137, "##hp": 8.056023597717285, "##nall": 10.533292770385742, "keystone": 8.744013786315918, "##kra": 7.940004825592041, "carleton": 10.689214706420898, "slippery": 8.621315956115723, "##53": 7.682745933532715, "coloring": 7.616497993469238, "foe": 8.478842735290527, "socket": 7.400386810302734, "otter": 8.672823905944824, "##rgos": 10.49578857421875, "mats": 8.393351554870605, "##tose": 6.788721561431885, "consultants": 7.986139297485352, "bafta": 10.256819725036621, "bison": 8.822195053100586, "topping": 7.654189586639404, "##km": 7.337092399597168, "490": 8.120835304260254, "primal": 9.173351287841797, "abandonment": 9.437515258789062, "transplant": 6.928591251373291, "atoll": 9.374263763427734, "hideous": 10.387365341186523, "mort": 8.059595108032227, "pained": 11.828338623046875, "reproduced": 8.67480754852295, "tae": 9.231696128845215, "howling": 10.203516006469727, "##turn": 8.456774711608887, "unlawful": 8.18851089477539, "billionaire": 8.22752857208252, "hotter": 8.003242492675781, "poised": 9.149656295776367, "lansing": 9.096794128417969, "##chang": 8.496411323547363, "dinamo": 13.980100631713867, "retro": 7.253467559814453, "messing": 9.747928619384766, "nfc": 9.091758728027344, "domesday": 10.237680435180664, "##mina": 7.089627265930176, "blitz": 9.323603630065918, "timed": 8.732726097106934, "##athing": 9.691469192504883, "##kley": 9.79145622253418, "ascending": 8.247191429138184, "gesturing": 12.245499610900879, "##izations": 8.092700958251953, "signaled": 9.728752136230469, "tis": 8.345549583435059, "chinatown": 9.934713363647461, "mermaid": 8.956659317016602, "savanna": 8.42070198059082, "jameson": 10.387365341186523, "##aint": 8.334182739257812, "catalina": 9.632838249206543, "##pet": 7.331202507019043, "##hers": 8.507550239562988, "cochrane": 10.2313814163208, "cy": 5.238346099853516, "chatting": 9.625959396362305, "##kus": 9.389029502868652, "alerted": 9.975194931030273, "computation": 8.724343299865723, "mused": 12.293702125549316, "noelle": 10.987707138061523, "majestic": 8.505870819091797, "mohawk": 9.466315269470215, "campo": 9.934713363647461, "octagonal": 10.880008697509766, "##sant": 8.688807487487793, "##hend": 9.087748527526855, "241": 8.4028902053833, "aspiring": 8.433101654052734, "##mart": 7.1276469230651855, "comprehend": 8.899524688720703, "iona": 10.724571228027344, "paralyzed": 9.429035186767578, "shimmering": 9.799578666687012, "swindon": 11.631905555725098, "rhone": 10.250399589538574, "##eley": 10.987707138061523, "reputed": 9.224787712097168, "configurations": 8.200386047363281, "pitchfork": 10.91049861907959, "agitation": 8.5137300491333, "francais": 9.229388236999512, "gillian": 10.19439697265625, "lipstick": 8.98604679107666, "##ilo": 8.226259231567383, "outsiders": 9.286309242248535, "pontifical": 11.657712936401367, "resisting": 9.379608154296875, "bitterness": 9.149656295776367, "sewer": 7.7468671798706055, "rockies": 8.670843124389648, "##edd": 9.75765609741211, "##ucher": 8.135783195495605, "misleading": 8.130392074584961, "1756": 10.077454566955566, "exiting": 9.078784942626953, "galloway": 10.413389205932617, "##nging": 9.357090950012207, "risked": 10.850419998168945, "##heart": 9.170086860656738, "246": 8.47612476348877, "commemoration": 9.728752136230469, "schultz": 9.880215644836426, "##rka": 9.602249145507812, "integrating": 8.70846939086914, "##rsa": 7.877840518951416, "poses": 7.980833530426025, "shrieked": 12.838003158569336, "##weiler": 9.871415138244629, "guineas": 11.299078941345215, "gladys": 9.797541618347168, "jerking": 9.813952445983887, "owls": 8.484847068786621, "goldsmith": 9.88686752319336, "nightly": 8.670843124389648, "penetrating": 8.525064468383789, "##unced": 9.93005657196045, "lia": 7.4530205726623535, "##33": 7.180302143096924, "ignited": 9.338919639587402, "betsy": 9.443209648132324, "##aring": 8.585564613342285, "##thorpe": 11.228565216064453, "follower": 9.057204246520996, "vigorously": 8.743304252624512, "##rave": 8.580129623413086, "coded": 8.16358470916748, "kiran": 11.415151596069336, "knit": 8.161602020263672, "zoology": 8.854947090148926, "tbilisi": 11.355432510375977, "##28": 7.415869235992432, "##bered": 10.082853317260742, "repository": 8.56875228881836, "govt": 9.357090950012207, "deciduous": 7.802571773529053, "dino": 8.93238353729248, "growling": 10.188364028930664, "##bba": 8.443029403686523, "enhancement": 7.939687252044678, "unleashed": 9.740214347839355, "chanting": 10.463592529296875, "pussy": 9.83908462524414, "biochemistry": 8.314135551452637, "##eric": 7.2467780113220215, "kettle": 8.471792221069336, "repression": 9.830636978149414, "toxicity": 7.531105995178223, "nrhp": 12.13427448272705, "##arth": 8.606985092163086, "##kko": 9.69881534576416, "##bush": 9.404016494750977, "ernesto": 11.007978439331055, "commended": 11.14688777923584, "outspoken": 9.598907470703125, "242": 8.19997501373291, "mca": 7.679070472717285, "parchment": 8.6416015625, "sms": 7.7468671798706055, "kristen": 9.037981986999512, "##aton": 8.056023597717285, "bisexual": 9.161433219909668, "raked": 10.228246688842773, "glamour": 9.275386810302734, "navajo": 8.916240692138672, "a2": 8.010029792785645, "conditioned": 8.545796394348145, "showcased": 9.925421714782715, "##hma": 8.71396255493164, "spacious": 8.265928268432617, "youthful": 8.654492378234863, "##esa": 9.147529602050781, "usl": 10.197427749633789, "appliances": 7.283807754516602, "junta": 10.844606399536133, "brest": 10.69419002532959, "layne": 11.15476131439209, "conglomerate": 8.93238353729248, "enchanted": 9.286309242248535, "chao": 9.893564224243164, "loosened": 9.867043495178223, "picasso": 8.951407432556152, "circulating": 7.746343612670898, "inspect": 7.874563694000244, "montevideo": 10.961302757263184, "##centric": 8.309989929199219, "##kti": 7.266658782958984, "piazza": 9.724961280822754, "spurred": 9.657293319702148, "##aith": 10.440108299255371, "bari": 7.933990478515625, "freedoms": 8.99695110321045, "poultry": 7.009370803833008, "stamford": 9.632838249206543, "lieu": 8.337484359741211, "##ect": 6.635855674743652, "indigo": 8.847050666809082, "sarcastic": 9.662612915039062, "bahia": 9.948814392089844, "stump": 8.34174633026123, "attach": 6.521722316741943, "dvds": 8.323875427246094, "frankenstein": 9.342785835266113, "lille": 10.394731521606445, "approx": 7.303605079650879, "scriptures": 9.206595420837402, "pollen": 7.464598178863525, "##script": 7.18253231048584, "nmi": 10.948357582092285, "overseen": 9.66617488861084, "##ivism": 8.917083740234375, "tides": 8.184853553771973, "proponent": 9.577454566955566, "newmarket": 11.326858520507812, "inherit": 7.84323787689209, "milling": 9.013533592224121, "##erland": 9.430442810058594, "centralized": 8.491438865661621, "##rou": 6.8066534996032715, "distributors": 8.428434371948242, "credentials": 7.83035135269165, "drawers": 9.048508644104004, "abbreviation": 6.310636520385742, "##lco": 8.257169723510742, "##xon": 8.15685749053955, "downing": 9.989882469177246, "uncomfortably": 10.266529083251953, "ripe": 7.216292858123779, "##oes": 8.819896697998047, "erase": 8.039052963256836, "franchises": 8.515986442565918, "##ever": 8.552218437194824, "populace": 9.856197357177734, "##bery": 9.713671684265137, "##khar": 9.771435737609863, "decomposition": 8.279657363891602, "pleas": 8.925555229187012, "##tet": 8.93324089050293, "daryl": 9.78139591217041, "sabah": 10.622042655944824, "##stle": 8.863704681396484, "##wide": 8.74970531463623, "fearless": 9.248003959655762, "genie": 9.598907470703125, "lesions": 7.194965362548828, "annette": 10.027575492858887, "##ogist": 7.094250202178955, "oboe": 10.455702781677246, "appendix": 7.605985164642334, "nair": 9.836966514587402, "dripped": 11.345816612243652, "petitioned": 10.365585327148438, "maclean": 10.810415267944336, "mosquito": 7.4236063957214355, "parrot": 8.43258285522461, "rpg": 9.209980964660645, "hampered": 10.499886512756348, "1648": 10.323400497436523, "operatic": 10.714341163635254, "reservoirs": 8.786773681640625, "##tham": 9.88686752319336, "irrelevant": 8.88553237915039, "jolt": 9.397175788879395, "summarized": 8.600203514099121, "##fp": 8.03625202178955, "medallion": 9.451811790466309, "##taff": 8.959295272827148, "##\u2212": 8.524495124816895, "clawed": 10.679337501525879, "harlow": 10.319963455200195, "narrower": 8.566373825073242, "goddard": 9.946450233459473, "marcia": 9.763538360595703, "bodied": 8.584959030151367, "fremont": 8.965473175048828, "suarez": 10.850419998168945, "altering": 8.279657363891602, "tempest": 9.740214347839355, "mussolini": 9.69881534576416, "porn": 8.995124816894531, "##isms": 8.97169017791748, "sweetly": 11.014827728271484, "oversees": 8.428951263427734, "walkers": 9.158207893371582, "solitude": 9.585651397705078, "grimly": 12.610613822937012, "shrines": 10.358429908752441, "hk": 8.841561317443848, "ich": 8.186883926391602, "supervisors": 8.408961296081543, "hostess": 9.36366081237793, "dietrich": 10.617413520812988, "legitimacy": 9.422021865844727, "brushes": 8.499739646911621, "expressive": 8.812272071838379, "##yp": 5.279730796813965, "dissipated": 9.989882469177246, "##rse": 8.190140724182129, "localized": 7.645874500274658, "systemic": 7.027690887451172, "##nikov": 11.100902557373047, "gettysburg": 8.890448570251465, "##js": 8.619434356689453, "##uaries": 8.409976959228516, "dialogues": 10.436246871948242, "muttering": 12.073030471801758, "251": 8.324341773986816, "housekeeper": 9.422021865844727, "sicilian": 9.608966827392578, "discouraged": 9.139068603515625, "##frey": 8.768430709838867, "beamed": 11.18689250946045, "kaladin": 15.078713417053223, "halftime": 9.75570297241211, "kidnap": 9.847604751586914, "##amo": 7.71848201751709, "##llet": 7.547267913818359, "1754": 9.79348087310791, "synonymous": 7.689396381378174, "depleted": 8.587989807128906, "instituto": 11.467795372009277, "insulin": 6.4358744621276855, "reprised": 10.218900680541992, "##opsis": 8.064258575439453, "clashed": 10.398435592651367, "##ctric": 8.230071067810059, "interrupting": 9.759613037109375, "radcliffe": 10.064085960388184, "insisting": 10.161656379699707, "medici": 9.797541618347168, "1715": 10.337265014648438, "ejected": 9.17444133758545, "playfully": 11.093440055847168, "turbulent": 9.136963844299316, "##47": 7.169811248779297, "starvation": 8.742595672607422, "##rini": 8.923006057739258, "shipment": 7.999528408050537, "rebellious": 9.659063339233398, "petersen": 10.26978588104248, "verification": 7.417750835418701, "merits": 9.199857711791992, "##rified": 8.177177429199219, "cakes": 7.682745933532715, "##charged": 8.644165992736816, "1757": 10.11586856842041, "milford": 9.561260223388672, "shortages": 9.246830940246582, "spying": 10.19439697265625, "fidelity": 8.409976959228516, "##aker": 9.51266098022461, "emitted": 8.12464714050293, "storylines": 10.110289573669434, "harvested": 7.675408363342285, "seismic": 8.354640007019043, "##iform": 8.495304107666016, "cheung": 11.546487808227539, "kilda": 11.768170356750488, "theoretically": 8.414559364318848, "barbie": 9.170086860656738, "lynx": 9.36497974395752, "##rgy": 9.080769538879395, "##tius": 9.953558921813965, "goblin": 9.747928619384766, "mata": 8.734832763671875, "poisonous": 7.7040839195251465, "##nburg": 10.590076446533203, "reactive": 7.540643692016602, "residues": 8.664271354675293, "obedience": 9.007051467895508, "##\u0435\u0432\u0438\u0447": 12.199514389038086, "conjecture": 9.803664207458496, "##rac": 6.576796054840088, "401": 7.105764389038086, "hating": 10.383702278137207, "sixties": 9.75765609741211, "kicker": 9.643245697021484, "moaning": 10.961302757263184, "motown": 9.390382766723633, "##bha": 9.143289566040039, "emancipation": 8.404403686523438, "neoclassical": 10.309724807739258, "##hering": 8.703006744384766, "consoles": 8.744723320007324, "ebert": 10.87402057647705, "professorship": 11.203353881835938, "##tures": 8.41916275024414, "sustaining": 8.725735664367676, "assaults": 9.491464614868164, "obeyed": 10.520634651184082, "affluent": 8.998780250549316, "incurred": 7.583949089050293, "tornadoes": 8.355602264404297, "##eber": 8.700286865234375, "##zow": 11.14688777923584, "emphasizing": 9.128591537475586, "highlanders": 11.086031913757324, "cheated": 9.75570297241211, "helmets": 9.327410697937012, "##ctus": 9.561260223388672, "internship": 7.804788112640381, "terence": 10.420949935913086, "bony": 7.645164489746094, "executions": 9.719300270080566, "legislators": 9.020057678222656, "berries": 7.320721626281738, "peninsular": 10.004790306091309, "tinged": 9.433265686035156, "##aco": 7.108940601348877, "1689": 9.992352485656738, "amplifier": 8.747567176818848, "corvette": 9.062067985534668, "ribbons": 9.07482624053955, "lavish": 8.963704109191895, "pennant": 10.15001106262207, "##lander": 8.95228099822998, "worthless": 8.803197860717773, "##chfield": 9.76747989654541, "##forms": 8.15843677520752, "mariano": 10.520634651184082, "pyrenees": 9.607282638549805, "expenditures": 8.051753997802734, "##icides": 7.635985851287842, "chesterfield": 9.836966514587402, "mandir": 11.467795372009277, "tailor": 8.253252983093262, "39th": 9.82643985748291, "sergey": 10.206573486328125, "nestled": 8.115144729614258, "willed": 9.891326904296875, "aristocracy": 9.486980438232422, "devotees": 10.22512149810791, "goodnight": 10.424753189086914, "raaf": 12.13427448272705, "rumored": 8.95228099822998, "weaponry": 10.164588928222656, "remy": 10.035287857055664, "appropriations": 9.246830940246582, "harcourt": 10.383702278137207, "burr": 7.454582214355469, "riaa": 10.337265014648438, "##lence": 8.502522468566895, "limitation": 7.982488632202148, "unnoticed": 9.110005378723145, "guo": 10.59458065032959, "soaking": 8.040806770324707, "swamps": 8.812272071838379, "##tica": 8.033459663391113, "collapsing": 9.491464614868164, "tatiana": 10.664703369140625, "descriptive": 7.817628383636475, "brigham": 9.74213695526123, "psalm": 9.518800735473633, "##chment": 8.398862838745117, "maddox": 10.72972583770752, "##lization": 7.322260856628418, "patti": 8.241166114807129, "caliph": 10.365585327148438, "##aja": 9.726855278015137, "akron": 8.847050666809082, "injuring": 9.569324493408203, "serra": 8.391854286193848, "##ganj": 11.697718620300293, "basins": 8.744013786315918, "##sari": 8.628242492675781, "astonished": 10.640778541564941, "launcher": 8.930671691894531, "##church": 10.155817031860352, "hilary": 9.724961280822754, "wilkins": 9.648490905761719, "sewing": 8.071474075317383, "##sf": 7.706343650817871, "stinging": 8.637128829956055, "##fia": 8.678788185119629, "##ncia": 9.2838716506958, "underwood": 9.085749626159668, "startup": 7.496280193328857, "##ition": 7.1981353759765625, "compilations": 10.559101104736328, "vibrations": 8.320154190063477, "embankment": 10.191375732421875, "jurist": 10.218900680541992, "##nity": 7.873077869415283, "bard": 8.75471305847168, "juventus": 10.83307933807373, "groundwater": 8.333711624145508, "kern": 8.94879150390625, "palaces": 9.71180248260498, "helium": 7.78284215927124, "boca": 9.033233642578125, "cramped": 9.732558250427246, "marissa": 10.59458065032959, "soto": 9.528081893920898, "##worm": 6.856105804443359, "jae": 9.713671684265137, "princely": 10.709264755249023, "##ggy": 8.70915412902832, "faso": 10.032711029052734, "bazaar": 9.965520858764648, "warmly": 10.508133888244629, "##voking": 9.302299499511719, "229": 8.254121780395508, "pairing": 8.101991653442383, "##lite": 7.563041687011719, "##grate": 8.845479011535645, "##nets": 9.020057678222656, "wien": 10.961302757263184, "freaked": 10.72972583770752, "ulysses": 8.985143661499023, "rebirth": 8.97347354888916, "##alia": 9.277803421020508, "##rent": 7.828929424285889, "mummy": 9.61912727355957, "guzman": 10.309724807739258, "jimenez": 10.67443561553955, "stilled": 12.293702125549316, "##nitz": 10.788253784179688, "trajectory": 9.299822807312012, "tha": 6.577201843261719, "woken": 10.617413520812988, "archival": 9.682361602783203, "professions": 8.036952018737793, "##pts": 9.603924751281738, "##pta": 8.439360618591309, "hilly": 9.389029502868652, "shadowy": 10.499886512756348, "shrink": 7.354796886444092, "##bolt": 8.907011985778809, "norwood": 10.080150604248047, "glued": 8.907848358154297, "migrate": 7.973911762237549, "stereotypes": 9.314776420593262, "devoid": 9.291202545166016, "##pheus": 10.319963455200195, "625": 8.241166114807129, "evacuate": 9.625959396362305, "horrors": 9.813952445983887, "infancy": 8.513166427612305, "gotham": 9.183208465576172, "knowles": 9.685995101928711, "optic": 7.334316253662109, "downloaded": 7.461248397827148, "sachs": 8.822962760925293, "kingsley": 10.533292770385742, "parramatta": 11.782876014709473, "darryl": 10.520634651184082, "mor": 6.519802093505859, "##onale": 10.788253784179688, "shady": 8.72017765045166, "commence": 8.788997650146484, "confesses": 10.750615119934082, "kan": 7.4409966468811035, "##meter": 7.3459930419921875, "##placed": 9.4795503616333, "marlborough": 10.77735424041748, "roundabout": 9.882428169250488, "regents": 9.157135009765625, "frigates": 11.546487808227539, "io": 6.634047508239746, "##imating": 7.889545440673828, "gothenburg": 10.77735424041748, "revoked": 8.942715644836426, "carvings": 9.963117599487305, "clockwise": 8.285470962524414, "convertible": 8.281442642211914, "intruder": 9.335068702697754, "##sche": 9.120287895202637, "banged": 11.326858520507812, "##ogo": 8.819896697998047, "vicky": 10.455702781677246, "bourgeois": 9.65024471282959, "##mony": 8.459440231323242, "dupont": 8.99695110321045, "footing": 8.656440734863281, "##gum": 9.123394012451172, "pd": 6.999528884887695, "##real": 8.18161392211914, "buckle": 8.831443786621094, "yun": 9.463397979736328, "penthouse": 10.085562705993652, "sane": 10.027575492858887, "720": 7.545554161071777, "serviced": 8.756147384643555, "stakeholders": 8.223725318908691, "neumann": 10.704215049743652, "bb": 6.984029293060303, "##eers": 9.667960166931152, "comb": 7.320379734039307, "##gam": 8.541731834411621, "catchment": 9.946450233459473, "pinning": 10.228246688842773, "rallies": 10.040462493896484, "typing": 7.2099995613098145, "##elles": 7.3409223556518555, "forefront": 8.759024620056152, "freiburg": 11.859837532043457, "sweetie": 10.655064582824707, "giacomo": 10.916709899902344, "widowed": 9.836966514587402, "goodwill": 8.923006057739258, "worshipped": 9.602249145507812, "aspirations": 9.323603630065918, "midday": 9.111028671264648, "##vat": 8.071474075317383, "fishery": 9.558052062988281, "##trick": 10.302956581115723, "bournemouth": 10.636061668395996, "turk": 9.172262191772461, "243": 8.280102729797363, "hearth": 9.055265426635742, "ethanol": 7.577520370483398, "guadalajara": 10.10197925567627, "murmurs": 10.228246688842773, "sl": 5.948000431060791, "##uge": 8.607604026794434, "afforded": 9.359713554382324, "scripted": 9.46924114227295, "##hta": 9.288752555847168, "wah": 8.488137245178223, "##jn": 9.497474670410156, "coroner": 9.268171310424805, "translucent": 8.236884117126465, "252": 8.081299781799316, "memorials": 9.75570297241211, "puck": 8.729923248291016, "progresses": 7.955685138702393, "clumsy": 9.643245697021484, "##race": 8.479387283325195, "315": 8.126558303833008, "candace": 10.129953384399414, "recounted": 10.443984031677246, "##27": 7.403909683227539, "##slin": 9.543744087219238, "##uve": 8.930671691894531, "filtering": 7.9878034591674805, "##mac": 8.054954528808594, "howl": 9.136963844299316, "strata": 8.898695945739746, "heron": 9.456140518188477, "leveled": 9.595577239990234, "##ays": 8.818367004394531, "dubious": 9.67333698272705, "##oja": 10.612804412841797, "##\u0442": 9.293657302856445, "##wheel": 8.579527854919434, "citations": 8.005273818969727, "exhibiting": 8.907011985778809, "##laya": 10.537548065185547, "##mics": 8.501408576965332, "##pods": 8.546379089355469, "turkic": 10.009808540344238, "##lberg": 9.225935935974121, "injunction": 9.51726245880127, "##ennial": 9.236329078674316, "##mit": 6.447441577911377, "antibodies": 6.87398624420166, "##44": 7.322603225708008, "organise": 9.417838096618652, "##rigues": 10.1853609085083, "cardiovascular": 6.857717990875244, "cushion": 7.7473907470703125, "inverness": 10.158732414245605, "##zquez": 10.640778541564941, "dia": 4.878794193267822, "cocoa": 7.794029235839844, "sibling": 8.42430305480957, "##tman": 9.537449836730957, "##roid": 6.445302486419678, "expanse": 9.067935943603516, "feasible": 8.775727272033691, "tunisian": 10.95481014251709, "algiers": 10.559101104736328, "##relli": 10.436246871948242, "rus": 9.080769538879395, "bloomberg": 8.483752250671387, "dso": 10.838826179504395, "westphalia": 10.436246871948242, "bro": 5.455587863922119, "tacoma": 8.63014030456543, "281": 8.3613920211792, "downloads": 7.9109039306640625, "##ours": 8.8384370803833, "konrad": 10.659872055053711, "duran": 8.485394477844238, "##hdi": 10.428569793701172, "continuum": 8.63776683807373, "jett": 8.792715072631836, "compares": 7.504873752593994, "legislator": 9.66974925994873, "secession": 9.314776420593262, "##nable": 8.844694137573242, "##gues": 9.74213695526123, "##zuka": 11.512001037597656, "translating": 8.985143661499023, "reacher": 11.782876014709473, "##gley": 10.4058837890625, "##\u0142a": 11.237112998962402, "aleppo": 10.929248809814453, "##agi": 7.485742092132568, "tc": 6.888857841491699, "orchards": 9.532754898071289, "trapping": 8.646738052368164, "linguist": 9.23981761932373, "versatile": 7.164241313934326, "drumming": 10.043060302734375, "postage": 7.752905368804932, "calhoun": 9.211112022399902, "superiors": 10.467560768127441, "##mx": 9.142232894897461, "barefoot": 9.307271957397461, "leary": 10.14423942565918, "##cis": 8.295841217041016, "ignacio": 10.916709899902344, "alfa": 8.16955852508545, "kaplan": 9.179912567138672, "##rogen": 6.707655906677246, "bratislava": 11.170698165893555, "mori": 8.445131301879883, "##vot": 7.4126787185668945, "disturb": 8.729923248291016, "haas": 9.629392623901367, "313": 8.496965408325195, "cartridges": 8.49807357788086, "gilmore": 9.638028144836426, "radiated": 9.71180248260498, "salford": 11.582205772399902, "tunic": 8.870122909545898, "hades": 9.590601921081543, "##ulsive": 8.863704681396484, "archeological": 9.992352485656738, "delilah": 10.941947937011719, "magistrates": 9.893564224243164, "auditioned": 9.948814392089844, "brewster": 9.911643981933594, "charters": 9.390382766723633, "empowerment": 9.331233024597168, "blogs": 7.901388645172119, "cappella": 10.60365104675293, "dynasties": 9.454695701599121, "iroquois": 9.64673900604248, "whipping": 9.332509994506836, "##krishna": 11.394845962524414, "raceway": 9.726855278015137, "truths": 9.0181884765625, "myra": 10.200467109680176, "weaken": 7.948934555053711, "judah": 9.422021865844727, "mcgregor": 9.520341873168945, "##horse": 8.80923843383789, "mic": 7.329132080078125, "refueling": 10.260046005249023, "37th": 9.543744087219238, "burnley": 11.859837532043457, "bosses": 9.007051467895508, "markus": 10.554753303527832, "premio": 12.015321731567383, "query": 7.376789569854736, "##gga": 8.95490550994873, "dunbar": 10.0720853805542, "##economic": 8.464792251586914, "darkest": 9.23981761932373, "lyndon": 8.761187553405762, "sealing": 8.035552978515625, "commendation": 10.669557571411133, "reappeared": 10.922959327697754, "##mun": 5.745535850524902, "addicted": 8.532501220703125, "ezio": 11.753677368164062, "slaughtered": 9.433265686035156, "satisfactory": 8.498628616333008, "shuffle": 9.122357368469238, "##eves": 10.1853609085083, "##thic": 7.613286972045898, "##uj": 8.768430709838867, "fortification": 9.634565353393555, "warrington": 10.935578346252441, "##otto": 9.529637336730957, "resurrected": 10.085562705993652, "fargo": 7.897729396820068, "mane": 8.570540428161621, "##utable": 7.698581695556641, "##lei": 7.66715669631958, "##space": 8.893739700317383, "foreword": 10.167530059814453, "ox": 6.073750019073486, "##aris": 8.42481803894043, "##vern": 8.602048873901367, "abrams": 9.374263763427734, "hua": 8.605749130249023, "##mento": 9.175533294677734, "sakura": 10.05878734588623, "##alo": 7.425502777099609, "uv": 6.9625349044799805, "sentimental": 9.405389785766602, "##skaya": 11.425460815429688, "midfield": 11.203353881835938, "##eses": 8.844694137573242, "sturdy": 7.945097923278809, "scrolls": 8.977945327758789, "macleod": 10.35487174987793, "##kyu": 10.487641334533691, "entropy": 9.246830940246582, "##lance": 9.084752082824707, "mitochondrial": 8.373563766479492, "cicero": 9.873607635498047, "excelled": 10.110289573669434, "thinner": 7.324660301208496, "convoys": 11.87596607208252, "perceive": 8.026857376098633, "##oslav": 11.697718620300293, "##urable": 8.543472290039062, "systematically": 9.06695556640625, "grind": 7.554367542266846, "burkina": 10.124295234680176, "287": 8.526776313781738, "##tagram": 7.251551628112793, "ops": 8.51655101776123, "##aman": 8.453055381774902, "guantanamo": 10.170479774475098, "##cloth": 8.16199779510498, "##tite": 8.671503067016602, "forcefully": 9.617426872253418, "wavy": 9.132768630981445, "##jou": 8.15174388885498, "pointless": 9.719300270080566, "##linger": 10.279622077941895, "##tze": 8.46747875213623, "layton": 10.724571228027344, "portico": 10.563467979431152, "superficial": 7.464400768280029, "clerical": 8.907848358154297, "outlaws": 10.061432838439941, "##hism": 9.83908462524414, "burials": 10.127120018005371, "muir": 9.74213695526123, "##inn": 8.739059448242188, "creditors": 7.998181343078613, "hauling": 9.059146881103516, "rattle": 8.423273086547852, "##leg": 7.265040397644043, "calais": 10.26328182220459, "monde": 10.0720853805542, "archers": 10.455702781677246, "reclaimed": 9.572568893432617, "dwell": 8.680118560791016, "wexford": 10.559101104736328, "hellenic": 10.061432838439941, "falsely": 9.259818077087402, "remorse": 9.809823989868164, "##tek": 9.119255065917969, "dough": 7.026034355163574, "furnishings": 8.965473175048828, "##uttered": 10.179381370544434, "gabon": 10.009808540344238, "neurological": 7.298577308654785, "novice": 8.635854721069336, "##igraphy": 9.730653762817383, "contemplated": 10.247204780578613, "pulpit": 10.289556503295898, "nightstand": 10.868067741394043, "saratoga": 9.317291259765625, "##istan": 9.78139591217041, "documenting": 8.940985679626465, "pulsing": 10.222005844116211, "taluk": 12.015321731567383, "##firmed": 9.889095306396484, "busted": 9.807766914367676, "marital": 8.15410041809082, "##rien": 7.702330112457275, "disagreements": 9.970346450805664, "wasps": 8.943581581115723, "##yes": 8.91877269744873, "hodge": 9.916215896606445, "mcdonnell": 10.724571228027344, "mimic": 7.559129238128662, "fran": 7.678581237792969, "pendant": 8.981537818908691, "dhabi": 9.21565055847168, "musa": 9.747928619384766, "##nington": 10.228246688842773, "congratulations": 8.366729736328125, "argent": 9.288752555847168, "darrell": 9.862690925598145, "concussion": 8.69351863861084, "losers": 9.86052131652832, "regrets": 10.093737602233887, "thessaloniki": 10.799272537231445, "reversal": 8.671503067016602, "donaldson": 10.417162895202637, "hardwood": 7.476511478424072, "thence": 10.622042655944824, "achilles": 8.501408576965332, "ritter": 10.244019508361816, "##eran": 8.451994895935059, "demonic": 10.004790306091309, "jurgen": 10.91049861907959, "prophets": 9.614034652709961, "goethe": 10.719443321228027, "eki": 11.086031913757324, "classmate": 10.045663833618164, "buff": 8.086432456970215, "##cking": 8.69351863861084, "yank": 9.706216812133789, "irrational": 8.762632369995117, "##inging": 9.682361602783203, "perished": 9.999795913696289, "seductive": 9.939391136169434, "qur": 9.582365036010742, "sourced": 8.494197845458984, "##crat": 8.770614624023438, "##typic": 9.354474067687988, "mustard": 7.381682395935059, "ravine": 10.004790306091309, "barre": 8.883084297180176, "horizontally": 8.164776802062988, "characterization": 9.040842056274414, "phylogenetic": 9.485489845275879, "boise": 8.893739700317383, "##dit": 7.5563130378723145, "##runner": 8.649961471557617, "##tower": 10.064085960388184, "brutally": 9.873607635498047, "intercourse": 7.630845546722412, "seduce": 9.83908462524414, "##bbing": 9.194276809692383, "fay": 9.51113224029541, "ferris": 9.342785835266113, "ogden": 9.288752555847168, "amar": 8.459440231323242, "nik": 8.462647438049316, "unarmed": 9.994827270507812, "##inator": 8.475040435791016, "evaluating": 7.703582763671875, "kyrgyzstan": 10.091005325317383, "sweetness": 8.397356986999512, "##lford": 10.032711029052734, "##oki": 7.9062886238098145, "mccormick": 9.55965518951416, "meiji": 10.152910232543945, "notoriety": 9.856197357177734, "stimulate": 6.666569232940674, "disrupt": 7.510230541229248, "figuring": 8.173962593078613, "instructional": 8.05566692352295, "mcgrath": 10.467560768127441, "##zoo": 8.664926528930664, "groundbreaking": 8.908683776855469, "##lto": 9.29858684539795, "flinch": 10.974417686462402, "khorasan": 11.711417198181152, "agrarian": 9.982511520385742, "bengals": 10.043060302734375, "mixer": 8.109862327575684, "radiating": 8.823731422424316, "##sov": 9.79348087310791, "ingram": 10.170479774475098, "pitchers": 9.119255065917969, "nad": 7.450876712799072, "tariff": 8.522218704223633, "##cript": 7.575533866882324, "tata": 9.426223754882812, "##codes": 8.364785194396973, "##emi": 7.462823390960693, "##ungen": 11.753677368164062, "appellate": 8.759024620056152, "lehigh": 9.368948936462402, "##bled": 10.52905559539795, "##giri": 10.286233901977539, "brawl": 9.765506744384766, "duct": 6.4261155128479, "texans": 9.182108879089355, "##ciation": 7.419824600219727, "##ropolis": 9.600577354431152, "skipper": 9.86052131652832, "speculative": 9.494464874267578, "vomit": 8.229222297668457, "doctrines": 9.639764785766602, "stresses": 8.245466232299805, "253": 8.34174633026123, "davy": 9.447501182556152, "graders": 9.382290840148926, "whitehead": 9.537449836730957, "jozef": 11.960762977600098, "timely": 7.592211723327637, "cumulative": 7.886831760406494, "haryana": 10.2536039352417, "paints": 7.867746829986572, "appropriately": 7.900777816772461, "boon": 9.1411771774292, "cactus": 8.289966583251953, "##ales": 8.883899688720703, "##pid": 7.229467391967773, "dow": 7.88412618637085, "legions": 10.032711029052734, "##pit": 6.442173480987549, "perceptions": 8.584959030151367, "1730": 9.747928619384766, "picturesque": 8.439360618591309, "##yse": 7.771242618560791, "periphery": 9.044668197631836, "rune": 9.934713363647461, "wr": 6.639827251434326, "##aha": 8.202035903930664, "celtics": 9.199857711791992, "sentencing": 8.730623245239258, "whoa": 10.127120018005371, "##erin": 9.25862979888916, "confirms": 8.252385139465332, "variance": 7.744775295257568, "425": 7.630146026611328, "moines": 8.720870971679688, "mathews": 10.541821479797363, "spade": 8.984240531921387, "rave": 8.630773544311523, "m1": 8.471792221069336, "fronted": 10.266529083251953, "fx": 8.36965274810791, "blending": 8.493645668029785, "alleging": 9.70993709564209, "reared": 9.918508529663086, "##gl": 6.829922199249268, "237": 8.338430404663086, "##paper": 7.88023042678833, "grassroots": 9.593915939331055, "eroded": 9.008899688720703, "##free": 7.6446919441223145, "##physical": 9.448936462402344, "directs": 8.25760555267334, "ordeal": 9.854042053222656, "##s\u0142aw": 12.796330451965332, "accelerate": 7.854250907897949, "hacker": 8.514857292175293, "rooftop": 9.128591537475586, "##inia": 9.189835548400879, "lev": 7.3414459228515625, "buys": 8.171558380126953, "cebu": 9.984962463378906, "devote": 8.831443786621094, "##lce": 8.47125244140625, "specialising": 10.309724807739258, "##ulsion": 8.26680850982666, "choreographed": 10.443984031677246, "repetition": 8.088272094726562, "warehouses": 9.122357368469238, "##ryl": 6.958600044250488, "paisley": 9.878008842468262, "tuscany": 9.123394012451172, "analogy": 8.633946418762207, "sorcerer": 9.657293319702148, "hash": 7.573110580444336, "huts": 10.077454566955566, "shards": 10.118669509887695, "descends": 9.10084056854248, "exclude": 7.506107330322266, "nix": 9.67333698272705, "chaplin": 10.182367324829102, "gaga": 9.035130500793457, "ito": 9.29858684539795, "vane": 9.620831489562988, "##drich": 10.113075256347656, "causeway": 9.648490905761719, "misconduct": 8.899524688720703, "limo": 8.69284439086914, "orchestrated": 10.121478080749512, "glands": 6.098263740539551, "jana": 9.85189151763916, "##kot": 9.4795503616333, "u2": 9.64150333404541, "##mple": 7.946375370025635, "##sons": 9.238653182983398, "branching": 8.530207633972168, "contrasts": 8.874155044555664, "scoop": 7.726912975311279, "longed": 10.77735424041748, "##virus": 7.190903663635254, "chattanooga": 8.96193790435791, "##75": 7.360827922821045, "syrup": 6.96134090423584, "cornerstone": 8.491990089416504, "##tized": 8.895389556884766, "##mind": 8.999695777893066, "##iaceae": 9.478071212768555, "careless": 9.10084056854248, "precedence": 9.395813941955566, "frescoes": 11.028668403625488, "##uet": 9.115134239196777, "chilled": 8.47449779510498, "consult": 6.778830528259277, "modelled": 10.323400497436523, "snatch": 9.662612915039062, "peat": 8.503637313842773, "##thermal": 8.195865631103516, "caucasian": 8.404403686523438, "humane": 8.628874778747559, "relaxation": 7.647531986236572, "spins": 8.67480754852295, "temperance": 9.481032371520996, "##lbert": 10.009808540344238, "occupations": 7.810908317565918, "lambda": 9.238653182983398, "hybrids": 8.43518352508545, "moons": 7.799256324768066, "mp3": 7.8871331214904785, "##oese": 10.499886512756348, "247": 8.486491203308105, "rolf": 9.88686752319336, "societal": 9.013533592224121, "yerevan": 11.739391326904297, "ness": 8.781603813171387, "##ssler": 10.155817031860352, "befriended": 10.617413520812988, "mechanized": 10.292889595031738, "nominate": 9.302299499511719, "trough": 8.543472290039062, "boasted": 9.71742057800293, "cues": 8.74970531463623, "seater": 10.080150604248047, "##hom": 7.106316089630127, "bends": 8.682784080505371, "##tangle": 7.7195000648498535, "conductors": 8.41404914855957, "emptiness": 10.483592987060547, "##lmer": 9.83485221862793, "eurasian": 8.986950874328613, "adriatic": 9.460488319396973, "tian": 9.648490905761719, "##cie": 7.555448055267334, "anxiously": 10.67443561553955, "lark": 9.702508926391602, "propellers": 10.33030891418457, "chichester": 11.47866439819336, "jock": 9.09982681274414, "ev": 6.763342380523682, "2a": 7.911829471588135, "##holding": 7.707601070404053, "credible": 8.90201473236084, "recounts": 9.989882469177246, "tori": 9.028508186340332, "loyalist": 10.83307933807373, "abduction": 9.083754539489746, "##hoot": 7.595355987548828, "##redo": 9.706216812133789, "nepali": 10.344270706176758, "##mite": 8.337957382202148, "ventral": 8.251951217651367, "tempting": 9.047547340393066, "##ango": 9.797541618347168, "##crats": 9.6933012008667, "steered": 10.471545219421387, "##wice": 11.619246482849121, "javelin": 10.299589157104492, "dipping": 8.368677139282227, "laborers": 9.248003959655762, "prentice": 10.816033363342285, "looming": 9.85189151763916, "titanium": 8.046794891357422, "##\u02d0": 6.893641471862793, "badges": 9.044668197631836, "emir": 9.636295318603516, "tensor": 9.925421714782715, "##ntation": 9.577454566955566, "egyptians": 8.198740005493164, "rash": 6.132259845733643, "denies": 9.105921745300293, "hawthorne": 9.498983383178711, "lombard": 9.405389785766602, "showers": 7.574872016906738, "wehrmacht": 11.467795372009277, "dietary": 6.324678421020508, "trojan": 8.578324317932129, "##reus": 8.010029792785645, "welles": 10.463592529296875, "executing": 8.683451652526855, "horseshoe": 8.648026466369629, "lifeboat": 9.960719108581543, "##lak": 8.701645851135254, "elsa": 9.689640998840332, "infirmary": 10.91049861907959, "nearing": 9.316032409667969, "roberta": 10.244019508361816, "boyer": 10.567853927612305, "mutter": 11.425460815429688, "trillion": 7.487356185913086, "joanne": 9.528081893920898, "##fine": 7.955362796783447, "##oked": 7.714419364929199, "sinks": 8.117417335510254, "vortex": 9.394453048706055, "uruguayan": 11.435877799987793, "clasp": 9.282655715942383, "sirius": 8.726431846618652, "##block": 7.815944194793701, "accelerator": 8.942715644836426, "prohibit": 8.200798988342285, "sunken": 9.333788871765137, "byu": 10.004790306091309, "chronological": 8.462647438049316, "diplomats": 9.902563095092773, "ochreous": 15.58953857421875, "510": 7.961507797241211, "symmetrical": 8.272547721862793, "1644": 10.004790306091309, "maia": 10.424753189086914, "##tology": 8.149392127990723, "salts": 7.109355449676514, "reigns": 9.497474670410156, "atrocities": 10.447875022888184, "##\u0438\u044f": 11.272050857543945, "hess": 9.44178295135498, "bared": 11.753677368164062, "issn": 10.524836540222168, "##vyn": 10.844606399536133, "cater": 7.496687889099121, "saturated": 6.717986583709717, "##cycle": 8.3257417678833, "##isse": 8.015835762023926, "sable": 9.632838249206543, "voyager": 8.915398597717285, "dyer": 9.797541618347168, "yusuf": 11.071379661560059, "##inge": 7.842085838317871, "fountains": 9.37826919555664, "wolff": 9.636295318603516, "##39": 7.548125743865967, "##nni": 8.703688621520996, "engraving": 9.184309959411621, "rollins": 10.027575492858887, "atheist": 9.587299346923828, "ominous": 9.83908462524414, "##ault": 10.228246688842773, "herr": 9.311017036437988, "chariot": 9.503521919250488, "martina": 10.420949935913086, "strung": 9.600577354431152, "##fell": 9.184309959411621, "##farlane": 9.918508529663086, "horrific": 9.326140403747559, "sahib": 10.868067741394043, "gazes": 11.859837532043457, "saetan": 1.0, "erased": 9.508081436157227, "ptolemy": 9.69881534576416, "##olic": 7.5563130378723145, "flushing": 8.042916297912598, "lauderdale": 8.202860832214355, "analytic": 9.223641395568848, "##ices": 8.077284812927246, "530": 7.952465057373047, "navarro": 10.471545219421387, "beak": 8.069304466247559, "gorilla": 8.457306861877441, "herrera": 10.734908103942871, "broom": 8.639681816101074, "guadalupe": 9.179912567138672, "raiding": 10.176405906677246, "sykes": 10.11586856842041, "311": 8.436747550964355, "bsc": 9.671541213989258, "deliveries": 8.80621337890625, "1720": 9.783400535583496, "invasions": 9.728752136230469, "carmichael": 10.080150604248047, "tajikistan": 10.05089282989502, "thematic": 9.610652923583984, "ecumenical": 11.007978439331055, "sentiments": 9.69697380065918, "onstage": 9.759613037109375, "##rians": 7.938418388366699, "##brand": 9.0144624710083, "##sume": 8.866106986999512, "catastrophic": 8.60946273803711, "flanks": 9.64673900604248, "molten": 7.898338317871094, "##arns": 10.032711029052734, "waller": 9.904826164245605, "aimee": 10.387365341186523, "terminating": 9.234009742736816, "##icing": 8.7525634765625, "alternately": 8.745433807373047, "##oche": 7.870112419128418, "nehru": 10.699189186096191, "printers": 7.745559215545654, "outraged": 10.05089282989502, "##eving": 9.209980964660645, "empires": 8.725735664367676, "template": 6.65043830871582, "banners": 9.245657920837402, "repetitive": 7.794029235839844, "za": 6.535579204559326, "##oise": 9.88686752319336, "vegetarian": 7.452630043029785, "##tell": 8.018580436706543, "guiana": 9.691469192504883, "opt": 6.022946834564209, "cavendish": 10.333781242370605, "lucknow": 10.810415267944336, "synthesized": 7.754223346710205, "##hani": 9.500494003295898, "##mada": 11.035661697387695, "finalized": 8.90201473236084, "##ctable": 8.521650314331055, "fictitious": 9.053330421447754, "mayoral": 10.636061668395996, "unreliable": 8.561041831970215, "##enham": 10.479560852050781, "embracing": 9.287530899047852, "peppers": 7.125113487243652, "rbis": 11.100902557373047, "##chio": 8.271662712097168, "##neo": 8.82450008392334, "inhibition": 8.549294471740723, "slashed": 10.15001106262207, "togo": 10.167530059814453, "orderly": 8.855740547180176, "embroidered": 9.653762817382812, "safari": 8.102364540100098, "salty": 7.802571773529053, "236": 8.25499153137207, "barron": 9.408143043518066, "benito": 9.66617488861084, "totaled": 8.831443786621094, "##dak": 9.039888381958008, "pubs": 9.21337890625, "simulated": 9.129633903503418, "caden": 10.659872055053711, "devin": 9.648490905761719, "tolkien": 9.608966827392578, "momma": 10.099224090576172, "welding": 7.653235912322998, "sesame": 7.888036727905273, "##ept": 7.196473598480225, "gottingen": 12.053421974182129, "hardness": 7.949575901031494, "630": 8.039753913879395, "shaman": 9.684176445007324, "temeraire": 15.078713417053223, "620": 7.927070617675781, "adequately": 8.162394523620605, "pediatric": 6.775753021240234, "##kit": 8.080934524536133, "ck": 8.238594055175781, "assertion": 8.890448570251465, "radicals": 8.264609336853027, "composure": 10.821682929992676, "cadence": 9.402644157409668, "seafood": 7.234002113342285, "beaufort": 9.456140518188477, "lazarus": 10.135643005371094, "mani": 7.370661735534668, "warily": 12.610613822937012, "cunning": 9.457588195800781, "kurdistan": 10.788253784179688, "249": 8.307235717773438, "cantata": 11.355432510375977, "##kir": 9.2374906539917, "ares": 9.293657302856445, "##41": 7.408937931060791, "##clusive": 8.572331428527832, "nape": 9.374263763427734, "townland": 11.739391326904297, "geared": 8.705052375793457, "insulted": 10.679337501525879, "flutter": 9.034181594848633, "boating": 8.30357551574707, "violate": 8.071836471557617, "draper": 9.214513778686523, "dumping": 9.051399230957031, "malmo": 11.245733261108398, "##hh": 8.753279685974121, "##romatic": 8.962821006774902, "firearm": 8.47449779510498, "alta": 8.440406799316406, "bono": 9.240982055664062, "obscured": 9.845467567443848, "##clave": 9.463397979736328, "exceeds": 7.220458984375, "panorama": 9.625959396362305, "unbelievable": 8.806968688964844, "##train": 7.822133541107178, "preschool": 7.80867862701416, "##essed": 9.777400016784668, "disconnected": 8.988761901855469, "installing": 6.6662139892578125, "rescuing": 10.451781272888184, "secretaries": 9.09477710723877, "accessibility": 8.327611923217773, "##castle": 10.237680435180664, "##drive": 7.505490303039551, "##ifice": 8.75471305847168, "##film": 8.700286865234375, "bouts": 8.811511993408203, "slug": 7.813143253326416, "waterway": 8.870122909545898, "mindanao": 10.612804412841797, "##buro": 10.659872055053711, "##ratic": 8.795699119567871, "halves": 8.04045581817627, "##\u0644": 8.604514122009277, "calming": 8.531353950500488, "liter": 6.5670952796936035, "maternity": 8.494197845458984, "adorable": 8.375524520874023, "bragg": 8.876582145690918, "electrification": 10.880008697509766, "mcc": 7.123849391937256, "##dote": 8.95490550994873, "roxy": 10.886032104492188, "schizophrenia": 7.8545427322387695, "##body": 8.41660213470459, "munoz": 10.572258949279785, "kaye": 9.90030574798584, "whaling": 10.215805053710938, "239": 8.306319236755371, "mil": 7.125394821166992, "tingling": 7.022476673126221, "tolerant": 8.288616180419922, "##ago": 7.52207612991333, "unconventional": 9.189835548400879, "volcanoes": 7.441189289093018, "##finder": 8.38241958618164, "deportivo": 12.926950454711914, "##llie": 8.505311965942383, "robson": 10.6082181930542, "kaufman": 9.509605407714844, "neuroscience": 8.965473175048828, "wai": 7.123709201812744, "deportation": 9.546905517578125, "masovian": 13.552656173706055, "scraping": 8.786773681640625, "converse": 9.159281730651855, "##bh": 8.499739646911621, "hacking": 8.825268745422363, "bulge": 7.852213382720947, "##oun": 8.581937789916992, "administratively": 9.999795913696289, "yao": 9.775407791137695, "580": 8.051398277282715, "amp": 6.0246758460998535, "mammoth": 8.800942420959473, "booster": 7.361717700958252, "claremont": 10.369182586669922, "hooper": 10.398435592651367, "nomenclature": 8.478842735290527, "pursuits": 9.62767505645752, "mclaughlin": 10.337265014648438, "melinda": 9.73637866973877, "##sul": 7.685696125030518, "catfish": 8.529634475708008, "barclay": 9.001529693603516, "substrates": 8.814553260803223, "taxa": 6.648080348968506, "zee": 9.408143043518066, "originals": 8.926405906677246, "kimberly": 9.045626640319824, "packets": 8.098636627197266, "padma": 10.417162895202637, "##ality": 8.616308212280273, "borrowing": 8.222461700439453, "ostensibly": 9.984962463378906, "solvent": 7.132449626922607, "##bri": 6.284524440765381, "##genesis": 8.180806159973145, "##mist": 8.661001205444336, "lukas": 10.640778541564941, "shreveport": 9.542166709899902, "veracruz": 10.17343807220459, "##\u044c": 9.997308731079102, "##lou": 7.416244983673096, "##wives": 8.403899192810059, "cheney": 10.048274993896484, "tt": 7.308152198791504, "anatolia": 9.426223754882812, "hobbs": 10.2408447265625, "##zyn": 11.18689250946045, "cyclic": 8.258041381835938, "radiant": 8.28099536895752, "alistair": 11.078679084777832, "greenish": 8.533650398254395, "siena": 10.048274993896484, "dat": 8.21115493774414, "independents": 10.074767112731934, "##bation": 8.928110122680664, "conform": 7.243766784667969, "pieter": 10.512283325195312, "hyper": 5.352117538452148, "applicant": 7.234315395355225, "bradshaw": 10.127120018005371, "spores": 7.7563347816467285, "telangana": 10.689214706420898, "vinci": 8.999695777893066, "inexpensive": 7.213832378387451, "nuclei": 6.93635892868042, "322": 8.236456871032715, "jang": 10.512283325195312, "nme": 10.516449928283691, "soho": 9.807766914367676, "spd": 9.537449836730957, "##ign": 7.643039226531982, "cradled": 11.489653587341309, "receptionist": 9.0144624710083, "pow": 8.61880874633789, "##43": 7.067358016967773, "##rika": 10.135643005371094, "fascism": 9.51266098022461, "##ifer": 7.778240203857422, "experimenting": 9.222496032714844, "##ading": 9.836966514587402, "##iec": 8.955781936645508, "##region": 9.332509994506836, "345": 8.402385711669922, "jocelyn": 10.554753303527832, "maris": 9.30478286743164, "stair": 8.329015731811523, "nocturnal": 8.298563957214355, "toro": 9.209980964660645, "constabulary": 11.996803283691406, "elgin": 9.66974925994873, "##kker": 10.306334495544434, "msc": 8.575323104858398, "##giving": 8.887168884277344, "##schen": 11.18689250946045, "##rase": 8.236884117126465, "doherty": 10.451781272888184, "doping": 10.132794380187988, "sarcastically": 11.644725799560547, "batter": 7.67980432510376, "maneuvers": 9.584007263183594, "##cano": 9.27418041229248, "##apple": 7.553072929382324, "##gai": 9.357090950012207, "##git": 7.540431022644043, "intrinsic": 7.840934753417969, "##nst": 8.39986801147461, "##stor": 7.855709075927734, "1753": 9.975194931030273, "showtime": 8.630773544311523, "cafes": 9.068917274475098, "gasps": 11.753677368164062, "lviv": 11.925976753234863, "ushered": 10.002289772033691, "##thed": 10.467560768127441, "fours": 9.309767723083496, "restart": 7.4972991943359375, "astonishment": 10.961302757263184, "transmitting": 8.47449779510498, "flyer": 8.685457229614258, "shrugs": 11.512001037597656, "##sau": 9.438936233520508, "intriguing": 8.736944198608398, "cones": 8.079472541809082, "dictated": 8.913715362548828, "mushrooms": 7.354796886444092, "medial": 7.404839038848877, "##kovsky": 11.404947280883789, "##elman": 9.55325984954834, "escorting": 11.534859657287598, "gaped": 13.024589538574219, "##26": 7.4296875, "godfather": 9.231696128845215, "##door": 7.682009696960449, "##sell": 8.395352363586426, "djs": 9.953558921813965, "recaptured": 10.916709899902344, "timetable": 9.118223190307617, "vila": 9.713671684265137, "1710": 10.05351734161377, "3a": 8.147436141967773, "aerodrome": 11.093440055847168, "mortals": 10.483592987060547, "scientology": 10.351325035095215, "##orne": 10.082853317260742, "angelina": 9.190943717956543, "mag": 6.696423530578613, "convection": 8.05852222442627, "unpaid": 7.718736171722412, "insertion": 7.637157917022705, "intermittent": 7.806175708770752, "lego": 8.161602020263672, "##nated": 7.95729923248291, "endeavor": 8.718101501464844, "kota": 10.10197925567627, "pereira": 11.071379661560059, "##lz": 8.729923248291016, "304": 8.100126266479492, "bwv": 12.073030471801758, "glamorgan": 11.782876014709473, "insults": 9.520341873168945, "agatha": 10.563467979431152, "fey": 10.043060302734375, "##cend": 7.793206214904785, "fleetwood": 9.895806312561035, "mahogany": 9.206595420837402, "protruding": 8.847838401794434, "steamship": 10.504002571105957, "zeta": 9.937049865722656, "##arty": 10.132794380187988, "mcguire": 10.158732414245605, "suspense": 9.12755012512207, "##sphere": 8.496965408325195, "advising": 8.930671691894531, "urges": 9.29735279083252, "##wala": 10.567853927612305, "hurriedly": 11.753677368164062, "meteor": 7.552210807800293, "gilded": 9.713671684265137, "inline": 8.94531536102295, "arroyo": 10.27633285522461, "stalker": 9.862690925598145, "##oge": 8.871733665466309, "excitedly": 11.394845962524414, "revered": 8.949663162231445, "##cure": 8.413029670715332, "earle": 10.107511520385742, "introductory": 8.289966583251953, "##break": 8.488137245178223, "##ilde": 8.448821067810059, "mutants": 10.2313814163208, "puff": 7.591763496398926, "pulses": 8.49807357788086, "reinforcement": 8.538260459899902, "##haling": 8.737648963928223, "curses": 10.64551830291748, "lizards": 8.14978313446045, "stalk": 8.161205291748047, "correlated": 8.64609432220459, "##fixed": 9.112053871154785, "fallout": 8.81075382232666, "macquarie": 10.436246871948242, "##unas": 9.980066299438477, "bearded": 8.734832763671875, "denton": 9.429035186767578, "heaving": 10.581128120422363, "802": 8.128089904785156, "##ocation": 7.910595417022705, "winery": 9.176626205444336, "assign": 7.233218669891357, "dortmund": 11.18689250946045, "##lkirk": 10.95481014251709, "everest": 8.307694435119629, "invariant": 10.323400497436523, "charismatic": 9.230541229248047, "susie": 10.306334495544434, "##elling": 8.941850662231445, "bled": 9.593915939331055, "lesley": 10.082853317260742, "telegram": 9.74213695526123, "sumner": 9.579089164733887, "bk": 9.293657302856445, "##ogen": 7.192556381225586, "##\u043a": 9.397175788879395, "wilcox": 10.11586856842041, "needy": 9.34020709991455, "colbert": 9.953558921813965, "duval": 9.577454566955566, "##iferous": 8.274320602416992, "##mbled": 9.700660705566406, "allotted": 9.184309959411621, "attends": 8.978842735290527, "imperative": 8.19750690460205, "##hita": 10.129953384399414, "replacements": 8.582541465759277, "hawker": 10.650279998779297, "##inda": 8.928963661193848, "insurgency": 10.719443321228027, "##zee": 8.562224388122559, "##eke": 9.749866485595703, "casts": 8.839217185974121, "##yla": 7.189253807067871, "680": 8.049625396728516, "ives": 10.132794380187988, "transitioned": 9.822259902954102, "##pack": 8.456242561340332, "##powering": 8.94879150390625, "authoritative": 8.208244323730469, "baylor": 9.132768630981445, "flex": 6.769824028015137, "cringed": 13.25416374206543, "plaintiffs": 9.753753662109375, "woodrow": 8.705734252929688, "##skie": 10.292889595031738, "drastic": 8.874155044555664, "ape": 8.3257417678833, "aroma": 7.453410625457764, "unfolded": 9.980066299438477, "commotion": 10.463592529296875, "nt": 6.608653545379639, "preoccupied": 10.273054122924805, "theta": 9.29735279083252, "routines": 8.65774154663086, "lasers": 8.802445411682129, "privatization": 11.042703628540039, "wand": 8.833769798278809, "domino": 8.763355255126953, "ek": 7.858339309692383, "clenching": 9.891326904296875, "nsa": 7.4080047607421875, "strategically": 9.0144624710083, "showered": 11.15476131439209, "bile": 6.987820625305176, "handkerchief": 10.326848030090332, "pere": 8.776460647583008, "storing": 7.3173089027404785, "christophe": 11.365140914916992, "insulting": 9.655527114868164, "316": 8.35128116607666, "nakamura": 11.523365020751953, "romani": 9.608966827392578, "asiatic": 9.4446382522583, "magdalena": 10.719443321228027, "palma": 8.736944198608398, "cruises": 8.300383567810059, "stripping": 9.107961654663086, "405": 8.28951644897461, "konstantin": 11.14688777923584, "soaring": 8.963704109191895, "##berman": 9.5405912399292, "colloquially": 8.561041831970215, "forerunner": 9.349263191223145, "havilland": 11.425460815429688, "incarcerated": 9.172262191772461, "parasites": 7.253467559814453, "sincerity": 10.05351734161377, "##utus": 9.61912727355957, "disks": 8.21198844909668, "plank": 7.661372661590576, "saigon": 10.025017738342285, "##ining": 8.422758102416992, "corbin": 10.15001106262207, "homo": 6.883544921875, "ornaments": 9.498983383178711, "powerhouse": 8.581335067749023, "##tlement": 8.231769561767578, "chong": 9.932381629943848, "fastened": 9.20322036743164, "feasibility": 9.380949020385742, "idf": 10.459639549255371, "morphological": 9.107961654663086, "usable": 8.015151023864746, "##nish": 7.674433708190918, "##zuki": 10.39104175567627, "aqueduct": 9.50503921508789, "jaguars": 9.37826919555664, "keepers": 9.431854248046875, "##flies": 8.873347282409668, "aleksandr": 11.049796104431152, "faust": 10.048274993896484, "assigns": 8.55868148803711, "ewing": 9.726855278015137, "bacterium": 7.195719242095947, "hurled": 11.115997314453125, "tricky": 7.657774925231934, "hungarians": 11.263200759887695, "integers": 8.742595672607422, "wallis": 9.925421714782715, "321": 8.34127140045166, "yamaha": 8.941850662231445, "##isha": 8.538838386535645, "hushed": 11.435877799987793, "oblivion": 9.856197357177734, "aviator": 9.33635139465332, "evangelist": 9.539019584655762, "friars": 10.550423622131348, "##eller": 8.44093132019043, "monograph": 9.662612915039062, "ode": 8.544633865356445, "##nary": 8.556914329528809, "airplanes": 8.613813400268555, "labourers": 10.892093658447266, "charms": 8.80621337890625, "##nee": 7.089763164520264, "1661": 10.626693725585938, "hagen": 10.533292770385742, "tnt": 8.95053482055664, "rudder": 9.805713653564453, "fiesta": 9.293657302856445, "transcript": 7.181639671325684, "dorothea": 10.664703369140625, "ska": 8.4815673828125, "inhibitor": 7.550273895263672, "maccabi": 13.46927547454834, "retorted": 12.513763427734375, "raining": 9.332509994506836, "encompassed": 9.55965518951416, "clauses": 7.952465057373047, "menacing": 10.074767112731934, "1642": 9.702508926391602, "lineman": 9.713671684265137, "##gist": 7.850759983062744, "vamps": 11.657712936401367, "##ape": 8.091591835021973, "##dick": 10.197427749633789, "gloom": 9.217926979064941, "##rera": 10.440108299255371, "dealings": 9.535881996154785, "easing": 9.206595420837402, "seekers": 8.461042404174805, "##nut": 7.043757915496826, "##pment": 8.504754066467285, "helens": 9.220208168029785, "unmanned": 9.508081436157227, "##anu": 9.136963844299316, "##isson": 10.141366004943848, "basics": 6.771303176879883, "##amy": 9.244487762451172, "##ckman": 10.138500213623047, "adjustments": 7.553504467010498, "1688": 10.39104175567627, "brutality": 9.854042053222656, "horne": 9.58072566986084, "##zell": 10.121478080749512, "sui": 8.504195213317871, "##55": 7.515823841094971, "##mable": 7.694599151611328, "aggregator": 10.49578857421875, "##thal": 8.123883247375488, "rhino": 7.91121244430542, "##drick": 9.925421714782715, "##vira": 8.323410034179688, "counters": 8.339849472045898, "zoom": 7.717973232269287, "##01": 7.080444812774658, "##rting": 9.916215896606445, "mn": 7.062065124511719, "montenegrin": 11.87596607208252, "packard": 9.23981761932373, "##unciation": 9.632838249206543, "##\u266d": 11.415151596069336, "##kki": 9.242149353027344, "reclaim": 9.039888381958008, "scholastic": 9.431854248046875, "thugs": 10.640778541564941, "pulsed": 9.920807838439941, "##icia": 6.705067157745361, "syriac": 10.520634651184082, "quan": 7.485540390014648, "saddam": 9.944091796875, "banda": 9.23981761932373, "kobe": 8.96990966796875, "blaming": 10.0720853805542, "buddies": 9.437515258789062, "dissent": 9.51113224029541, "##lusion": 8.360424995422363, "##usia": 9.0659761428833, "corbett": 10.215805053710938, "jaya": 9.948814392089844, "delle": 11.115997314453125, "erratic": 9.187621116638184, "lexie": 11.644725799560547, "##hesis": 8.32995319366455, "435": 8.046794891357422, "amiga": 11.404947280883789, "hermes": 9.629392623901367, "##pressing": 8.739059448242188, "##leen": 7.439070701599121, "chapels": 11.211687088012695, "gospels": 9.81188678741455, "jamal": 10.455702781677246, "##uating": 8.557502746582031, "compute": 7.877243995666504, "revolving": 8.825268745422363, "warp": 8.484299659729004, "##sso": 7.197077751159668, "##thes": 8.34174633026123, "armory": 10.030139923095703, "##eras": 9.747928619384766, "##gol": 8.21157169342041, "antrim": 10.282922744750977, "loki": 10.420949935913086, "##kow": 9.75570297241211, "##asian": 9.980066299438477, "##good": 8.848625183105469, "##zano": 10.107511520385742, "braid": 8.43258285522461, "handwriting": 9.286309242248535, "subdistrict": 13.132802963256836, "funky": 9.176626205444336, "pantheon": 9.550077438354492, "##iculate": 7.878139019012451, "concurrency": 10.799272537231445, "estimation": 8.325275421142578, "improper": 7.579732418060303, "juliana": 10.821682929992676, "##his": 6.6043853759765625, "newcomers": 9.34020709991455, "johnstone": 11.317512512207031, "staten": 8.928963661193848, "communicated": 9.123394012451172, "##oco": 6.362701892852783, "##alle": 8.963704109191895, "sausage": 7.198437690734863, "stormy": 9.572568893432617, "##stered": 9.71180248260498, "##tters": 9.184309959411621, "superfamily": 10.14712142944336, "##grade": 7.550058841705322, "acidic": 6.909829616546631, "collateral": 7.93651819229126, "tabloid": 9.570945739746094, "##oped": 7.381137847900391, "##rza": 10.032711029052734, "bladder": 6.226677417755127, "austen": 9.450372695922852, "##ellant": 8.905344009399414, "mcgraw": 9.324871063232422, "##hay": 9.405389785766602, "hannibal": 9.52188491821289, "mein": 9.638028144836426, "aquino": 10.99441909790039, "lucifer": 9.622537612915039, "wo": 6.6034674644470215, "badger": 8.931528091430664, "boar": 8.927257537841797, "cher": 7.3088274002075195, "christensen": 10.383702278137207, "greenberg": 10.093737602233887, "interruption": 8.454116821289062, "##kken": 10.27633285522461, "jem": 9.06695556640625, "244": 8.37014102935791, "mocked": 10.590076446533203, "bottoms": 8.811511993408203, "cambridgeshire": 10.64551830291748, "##lide": 8.097892761230469, "sprawling": 9.090754508972168, "##bbly": 8.852571487426758, "eastwood": 9.103885650634766, "ghent": 10.279622077941895, "synth": 7.542135715484619, "##buck": 8.735535621643066, "advisers": 9.029451370239258, "##bah": 9.715544700622559, "nominally": 9.925421714782715, "hapoel": 14.742240905761719, "qu": 5.845848083496094, "daggers": 11.108421325683594, "estranged": 9.5405912399292, "fabricated": 9.0303955078125, "towels": 7.596481800079346, "vinnie": 10.935578346252441, "wcw": 10.38005256652832, "misunderstanding": 8.86690902709961, "anglia": 10.155817031860352, "nothin": 10.398435592651367, "unmistakable": 9.994827270507812, "##dust": 9.07383918762207, "##lova": 10.313125610351562, "chilly": 8.633310317993164, "marquette": 9.614034652709961, "truss": 8.765527725219727, "##edge": 8.44723892211914, "##erine": 7.281997203826904, "reece": 10.77735424041748, "##lty": 9.503521919250488, "##chemist": 8.633310317993164, "##connected": 8.530207633972168, "272": 8.305861473083496, "308": 8.489236831665039, "41st": 9.925421714782715, "bash": 8.548127174377441, "raion": 13.25416374206543, "waterfalls": 8.768430709838867, "##ump": 7.490794658660889, "##main": 9.401274681091309, "labyrinth": 8.805459022521973, "queue": 8.485394477844238, "theorist": 9.671541213989258, "##istle": 8.63014030456543, "bharatiya": 11.943219184875488, "flexed": 9.457588195800781, "soundtracks": 10.394731521606445, "rooney": 9.526529312133789, "leftist": 10.541821479797363, "patrolling": 10.745351791381836, "wharton": 9.51113224029541, "plainly": 10.025017738342285, "alleviate": 7.842373847961426, "eastman": 10.025017738342285, "schuster": 10.463592529296875, "topographic": 8.682116508483887, "engages": 8.448821067810059, "immensely": 9.217926979064941, "unbearable": 9.617426872253418, "fairchild": 10.471545219421387, "1620": 9.21337890625, "dona": 8.16358470916748, "lurking": 9.79348087310791, "parisian": 9.937049865722656, "oliveira": 11.797801971435547, "ia": 6.6851348876953125, "indictment": 9.07383918762207, "hahn": 9.88686752319336, "bangladeshi": 10.67443561553955, "##aster": 9.0659761428833, "vivo": 8.890448570251465, "##uming": 9.338919639587402, "##ential": 8.39135456085205, "antonia": 10.78278923034668, "expects": 8.118555068969727, "indoors": 7.471927642822266, "kildare": 11.203353881835938, "harlan": 9.657293319702148, "##logue": 9.481032371520996, "##ogenic": 8.125028610229492, "##sities": 8.767704963684082, "forgiven": 9.472175598144531, "##wat": 8.37307357788086, "childish": 10.009808540344238, "tavi": 10.755906105041504, "##mide": 7.758185863494873, "##orra": 9.595577239990234, "plausible": 9.459036827087402, "grimm": 9.486980438232422, "successively": 10.099224090576172, "scooted": 13.46927547454834, "##bola": 8.44093132019043, "##dget": 8.071836471557617, "##rith": 10.537548065185547, "spartans": 10.009808540344238, "emery": 9.818097114562988, "flatly": 11.828338623046875, "azure": 8.380938529968262, "epilogue": 10.87402057647705, "##wark": 9.992352485656738, "flourish": 8.80621337890625, "##iny": 9.608966827392578, "##tracted": 8.637128829956055, "##overs": 8.099754333496094, "##oshi": 9.878008842468262, "bestseller": 9.2838716506958, "distressed": 9.454695701599121, "receipt": 7.2099995613098145, "spitting": 9.509605407714844, "hermit": 9.29488754272461, "topological": 10.599105834960938, "##cot": 7.508166790008545, "drilled": 8.640321731567383, "subunit": 8.122358322143555, "francs": 10.218900680541992, "##layer": 8.125411033630371, "eel": 9.089751243591309, "##fk": 8.210739135742188, "##itas": 9.622537612915039, "octopus": 8.613813400268555, "footprint": 8.16517448425293, "petitions": 9.402644157409668, "ufo": 9.789436340332031, "##say": 9.354474067687988, "##foil": 9.398540496826172, "interfering": 8.86450481414795, "leaking": 7.7885565757751465, "palo": 8.363329887390137, "##metry": 8.629507064819336, "thistle": 9.160356521606445, "valiant": 10.030139923095703, "##pic": 6.966245174407959, "narayan": 10.838826179504395, "mcpherson": 10.358429908752441, "##fast": 8.709839820861816, "gonzales": 10.127120018005371, "##ym": 5.515113830566406, "##enne": 9.518800735473633, "dustin": 8.91203498840332, "novgorod": 11.81295394897461, "solos": 10.014852523803711, "##zman": 9.803664207458496, "doin": 10.669557571411133, "##raph": 8.27520751953125, "##patient": 7.000148773193359, "##meyer": 10.10197925567627, "soluble": 6.553353309631348, "ashland": 9.393095016479492, "cuffs": 10.014852523803711, "carole": 9.751808166503906, "pendleton": 9.492963790893555, "whistling": 9.687816619873047, "vassal": 10.091005325317383, "##river": 9.70993709564209, "deviation": 7.298577308654785, "revisited": 10.113075256347656, "constituents": 8.227951049804688, "rallied": 10.206573486328125, "rotate": 7.115461826324463, "loomed": 11.345816612243652, "##eil": 9.321073532104492, "##nting": 9.476593971252441, "amateurs": 10.037872314453125, "augsburg": 10.77735424041748, "auschwitz": 9.675134658813477, "crowns": 8.37014102935791, "skeletons": 9.112053871154785, "##cona": 8.602048873901367, "bonnet": 9.659063339233398, "257": 8.512603759765625, "dummy": 9.4446382522583, "globalization": 9.059146881103516, "simeon": 10.27633285522461, "sleeper": 9.116162300109863, "mandal": 9.157135009765625, "differentiated": 8.390357971191406, "##crow": 7.9709601402282715, "##mare": 10.26978588104248, "milne": 10.161656379699707, "bundled": 8.672823905944824, "exasperated": 11.512001037597656, "talmud": 10.483592987060547, "owes": 8.374053955078125, "segregated": 9.287530899047852, "##feng": 11.12363052368164, "##uary": 8.70915412902832, "dentist": 6.692221164703369, "piracy": 9.895806312561035, "props": 9.38632869720459, "##rang": 7.679315090179443, "devlin": 11.162697792053223, "##torium": 9.871415138244629, "malicious": 8.320154190063477, "paws": 8.829896926879883, "##laid": 9.438936233520508, "dependency": 8.348411560058594, "##ergy": 6.65825080871582, "##fers": 8.471792221069336, "##enna": 10.479560852050781, "258": 8.509231567382812, "pistons": 8.96990966796875, "rourke": 10.599105834960938, "jed": 9.475119590759277, "grammatical": 8.36916446685791, "tres": 8.334653854370117, "maha": 8.42070198059082, "wig": 8.035552978515625, "512": 8.27520751953125, "ghostly": 10.4058837890625, "jayne": 10.479560852050781, "##achal": 10.118669509887695, "##creen": 8.05246353149414, "##ilis": 8.349844932556152, "##lins": 8.626348495483398, "##rence": 8.09900951385498, "designate": 7.846992015838623, "##with": 8.384893417358398, "arrogance": 10.158732414245605, "cambodian": 10.289556503295898, "clones": 9.321073532104492, "showdown": 9.494464874267578, "throttle": 8.531353950500488, "twain": 8.96902084350586, "##ception": 7.370122909545898, "lobes": 7.99784517288208, "metz": 10.372793197631836, "nagoya": 10.59458065032959, "335": 8.270336151123047, "braking": 8.4815673828125, "##furt": 10.89819049835205, "385": 8.437270164489746, "roaming": 8.644165992736816, "##minster": 9.960719108581543, "amin": 8.408453941345215, "crippled": 10.110289573669434, "##37": 7.454973220825195, "##llary": 7.964756965637207, "indifferent": 9.830636978149414, "hoffmann": 10.559101104736328, "idols": 10.273054122924805, "intimidating": 8.995124816894531, "1751": 10.107511520385742, "261": 8.377490043640137, "influenza": 7.322945594787598, "memo": 7.798153400421143, "onions": 6.776050567626953, "1748": 10.228246688842773, "bandage": 8.526776313781738, "consciously": 9.207722663879395, "##landa": 9.671541213989258, "##rage": 8.836878776550293, "clandestine": 10.08828067779541, "observes": 8.763355255126953, "swiped": 10.941947937011719, "tangle": 9.282655715942383, "##ener": 6.571287155151367, "##jected": 10.850419998168945, "##trum": 9.028508186340332, "##bill": 8.2783203125, "##lta": 7.758450984954834, "hugs": 9.72307014465332, "congresses": 10.941947937011719, "josiah": 10.14423942565918, "spirited": 9.209980964660645, "##dek": 10.299589157104492, "humanist": 9.244487762451172, "managerial": 8.928963661193848, "filmmaking": 10.077454566955566, "inmate": 7.886831760406494, "rhymes": 8.619434356689453, "debuting": 9.884645462036133, "grimsby": 11.739391326904297, "ur": 4.846705913543701, "##laze": 8.18242359161377, "duplicate": 7.567407131195068, "vigor": 9.107961654663086, "##tf": 8.434142112731934, "republished": 10.886032104492188, "bolshevik": 10.256819725036621, "refurbishment": 10.313125610351562, "antibiotics": 6.375970363616943, "martini": 9.419230461120605, "methane": 7.743209362030029, "newscasts": 11.042703628540039, "royale": 9.492963790893555, "horizons": 9.187621116638184, "levant": 9.467777252197266, "iain": 10.559101104736328, "visas": 8.403899192810059, "##ischen": 12.370662689208984, "paler": 9.946450233459473, "##around": 8.35656452178955, "manifestation": 7.83519983291626, "snuck": 10.948357582092285, "alf": 8.970799446105957, "chop": 7.0092453956604, "futile": 10.08828067779541, "pedestal": 9.2838716506958, "rehab": 7.8380632400512695, "##kat": 8.556325912475586, "bmg": 10.95481014251709, "kerman": 11.131322860717773, "res": 5.389917373657227, "fairbanks": 9.145407676696777, "jarrett": 10.788253784179688, "abstraction": 9.161433219909668, "saharan": 8.669525146484375, "##zek": 9.932381629943848, "1746": 10.52905559539795, "procedural": 8.309989929199219, "clearer": 8.534801483154297, "kincaid": 11.336292266845703, "sash": 8.982438087463379, "luciano": 11.056939125061035, "##ffey": 9.953558921813965, "crunch": 7.580618858337402, "helmut": 11.014827728271484, "##vara": 10.045663833618164, "revolutionaries": 10.326848030090332, "##tute": 9.256258964538574, "creamy": 7.492822647094727, "leach": 8.508110046386719, "##mmon": 9.208850860595703, "1747": 10.69419002532959, "permitting": 8.653196334838867, "nes": 8.65774154663086, "plight": 10.004790306091309, "wendell": 10.004790306091309, "##lese": 10.550423622131348, "contra": 6.966365337371826, "ts": 6.087798118591309, "clancy": 10.158732414245605, "ipa": 8.330422401428223, "mach": 7.445246696472168, "staples": 8.191773414611816, "autopsy": 9.07383918762207, "disturbances": 8.206170082092285, "nueva": 10.886032104492188, "karin": 10.234525680541992, "pontiac": 8.908683776855469, "##uding": 9.412286758422852, "proxy": 8.314135551452637, "venerable": 9.745994567871094, "haunt": 9.412286758422852, "leto": 9.994827270507812, "bergman": 10.302956581115723, "expands": 7.934305667877197, "##helm": 8.678788185119629, "wal": 6.6626667976379395, "##pipe": 7.8754563331604, "canning": 8.602048873901367, "celine": 9.884645462036133, "cords": 8.026165008544922, "obesity": 6.974674224853516, "##enary": 10.14712142944336, "intrusion": 8.830670356750488, "planner": 8.05246353149414, "##phate": 7.666431903839111, "reasoned": 10.064085960388184, "sequencing": 8.94879150390625, "307": 8.531353950500488, "harrow": 9.62767505645752, "##chon": 8.922158241271973, "##dora": 9.350563049316406, "marred": 10.541821479797363, "mcintyre": 10.31653881072998, "repay": 7.490592002868652, "tarzan": 10.025017738342285, "darting": 11.457042694091797, "248": 8.320154190063477, "harrisburg": 9.007975578308105, "margarita": 9.307271957397461, "repulsed": 11.384845733642578, "##hur": 8.95053482055664, "##lding": 9.638028144836426, "belinda": 10.892093658447266, "hamburger": 8.028590202331543, "novo": 8.651901245117188, "compliant": 8.123501777648926, "runways": 9.662612915039062, "bingham": 9.485489845275879, "registrar": 8.45252513885498, "skyscraper": 8.898695945739746, "ic": 5.919602870941162, "cuthbert": 10.95481014251709, "improvisation": 9.728752136230469, "livelihood": 9.554855346679688, "##corp": 8.916240692138672, "##elial": 7.294406414031982, "admiring": 10.734908103942871, "##dened": 9.460488319396973, "sporadic": 8.739059448242188, "believer": 9.36497974395752, "casablanca": 9.970346450805664, "popcorn": 8.207414627075195, "##29": 7.471530437469482, "asha": 9.466315269470215, "shovel": 8.64931583404541, "##bek": 9.307271957397461, "##dice": 9.595577239990234, "coiled": 8.742595672607422, "tangible": 8.08056926727295, "##dez": 10.074767112731934, "casper": 10.118669509887695, "elsie": 10.740116119384766, "resin": 7.311025619506836, "tenderness": 7.318501949310303, "rectory": 12.513763427734375, "##ivision": 9.82643985748291, "avail": 8.721564292907715, "sonar": 9.590601921081543, "##mori": 8.891270637512207, "boutique": 8.23091983795166, "##dier": 10.244019508361816, "guerre": 11.13907527923584, "bathed": 9.88686752319336, "upbringing": 9.657293319702148, "vaulted": 10.164588928222656, "sandals": 8.99695110321045, "blessings": 9.287530899047852, "##naut": 9.229388236999512, "##utnant": 14.290255546569824, "1680": 9.6933012008667, "306": 8.61132526397705, "foxes": 8.725038528442383, "pia": 8.269011497497559, "corrosion": 7.48292350769043, "hesitantly": 12.577277183532715, "confederates": 9.873607635498047, "crystalline": 7.644455909729004, "footprints": 9.636295318603516, "shapiro": 10.014852523803711, "tirana": 11.336292266845703, "valentin": 9.66974925994873, "drones": 9.217926979064941, "45th": 9.412286758422852, "microscope": 7.389891147613525, "shipments": 8.359457969665527, "texted": 10.714341163635254, "inquisition": 9.667960166931152, "wry": 10.504002571105957, "guernsey": 10.19439697265625, "unauthorized": 8.330891609191895, "resigning": 10.533292770385742, "760": 7.858046531677246, "ripple": 9.010750770568848, "schubert": 10.810415267944336, "stu": 7.115322589874268, "reassure": 10.05614948272705, "felony": 7.404281139373779, "##ardo": 10.110289573669434, "brittle": 7.826375961303711, "koreans": 10.05351734161377, "##havan": 11.056939125061035, "##ives": 8.41150188446045, "dun": 7.409124374389648, "implicit": 8.522787094116211, "tyres": 9.76747989654541, "##aldi": 9.607282638549805, "##lth": 7.025779724121094, "magnolia": 8.755430221557617, "##ehan": 10.35487174987793, "##puri": 10.467560768127441, "##poulos": 10.89819049835205, "aggressively": 9.033233642578125, "fei": 8.839217185974121, "gr": 5.135610580444336, "familiarity": 7.251392364501953, "##poo": 6.009682655334473, "indicative": 8.101244926452637, "##trust": 8.414559364318848, "fundamentally": 8.727128982543945, "jimmie": 10.05089282989502, "overrun": 9.515726089477539, "395": 8.4815673828125, "anchors": 8.565186500549316, "moans": 11.909027099609375, "##opus": 10.451781272888184, "britannia": 10.520634651184082, "armagh": 11.064133644104004, "##ggle": 7.903223514556885, "purposely": 9.728752136230469, "seizing": 9.944091796875, "##vao": 10.850419998168945, "bewildered": 10.948357582092285, "mundane": 9.734466552734375, "avoidance": 8.788997650146484, "cosmopolitan": 9.051399230957031, "geometridae": 13.191643714904785, "quartermaster": 10.745351791381836, "caf": 6.548840522766113, "415": 8.381431579589844, "chatter": 9.454695701599121, "engulfed": 9.925421714782715, "gleam": 10.636061668395996, "purge": 8.940985679626465, "##icate": 8.648026466369629, "juliette": 10.455702781677246, "jurisprudence": 9.636295318603516, "guerra": 11.100902557373047, "revisions": 8.940122604370117, "##bn": 8.074738502502441, "casimir": 11.100902557373047, "brew": 7.4022393226623535, "##jm": 9.535881996154785, "1749": 10.33030891418457, "clapton": 9.684176445007324, "cloudy": 7.1108784675598145, "conde": 7.051693439483643, "hermitage": 10.191375732421875, "278": 8.605749130249023, "simulations": 9.652002334594727, "torches": 10.08828067779541, "vincenzo": 10.916709899902344, "matteo": 11.317512512207031, "##rill": 8.043620109558105, "hidalgo": 9.353169441223145, "booming": 9.217926979064941, "westbound": 10.409629821777344, "accomplishment": 8.814553260803223, "tentacles": 9.184309959411621, "unaffected": 9.069899559020996, "##sius": 10.659872055053711, "annabelle": 10.326848030090332, "flopped": 11.336292266845703, "sloping": 8.98063850402832, "##litz": 9.700660705566406, "dreamer": 9.282655715942383, "interceptor": 10.520634651184082, "vu": 7.240448474884033, "##loh": 9.236329078674316, "consecration": 11.355432510375977, "copying": 8.126175880432129, "messaging": 7.807565212249756, "breaker": 8.02997875213623, "climates": 7.359405517578125, "hospitalized": 8.592857360839844, "1752": 10.082853317260742, "torino": 11.078679084777832, "afternoons": 9.689640998840332, "winfield": 10.069412231445312, "witnessing": 9.708074569702148, "##teacher": 9.744063377380371, "breakers": 8.836878776550293, "choirs": 10.886032104492188, "sawmill": 10.012328147888184, "coldly": 12.177291870117188, "##ege": 8.368677139282227, "sipping": 9.732558250427246, "haste": 8.900354385375977, "uninhabited": 9.71180248260498, "conical": 8.900354385375977, "bibliography": 8.493645668029785, "pamphlets": 10.302956581115723, "severn": 9.934713363647461, "edict": 10.118669509887695, "##oca": 6.161858081817627, "deux": 10.856268882751465, "illnesses": 6.93635892868042, "grips": 9.145407676696777, "##pl": 5.162497043609619, "rehearsals": 10.49578857421875, "sis": 7.903529644012451, "thinkers": 8.997864723205566, "tame": 8.439360618591309, "##keepers": 9.177720069885254, "1690": 10.014852523803711, "acacia": 9.47364616394043, "reformer": 9.206595420837402, "##osed": 8.400874137878418, "##rys": 7.896817207336426, "shuffling": 10.313125610351562, "##iring": 9.61234188079834, "##shima": 11.263200759887695, "eastbound": 10.152910232543945, "ionic": 7.463414669036865, "rhea": 9.644990921020508, "flees": 10.745351791381836, "littered": 10.508133888244629, "##oum": 9.71180248260498, "rocker": 8.8016939163208, "vomiting": 6.086553573608398, "groaning": 11.365140914916992, "champ": 8.458906173706055, "overwhelmingly": 9.384981155395508, "civilizations": 8.270777702331543, "paces": 10.027575492858887, "sloop": 11.056939125061035, "adoptive": 9.042753219604492, "##tish": 9.090754508972168, "skaters": 10.06674575805664, "##vres": 10.05089282989502, "aiding": 9.181010246276855, "mango": 8.014467239379883, "##joy": 9.561260223388672, "nikola": 9.327410697937012, "shriek": 10.719443321228027, "##ignon": 10.113075256347656, "pharmaceuticals": 8.190547943115234, "##mg": 6.729275703430176, "tuna": 7.530683994293213, "calvert": 9.980066299438477, "gustavo": 10.816033363342285, "stocked": 8.807724952697754, "yearbook": 10.176405906677246, "##urai": 11.18689250946045, "##mana": 8.502522468566895, "computed": 7.82807731628418, "subsp": 8.874155044555664, "riff": 9.229388236999512, "hanoi": 9.911643981933594, "kelvin": 8.39986801147461, "hamid": 11.317512512207031, "moors": 9.923111915588379, "pastures": 9.276594161987305, "summons": 8.60946273803711, "jihad": 10.141366004943848, "nectar": 8.113255500793457, "##ctors": 8.620060920715332, "bayou": 9.23981761932373, "untitled": 10.002289772033691, "pleasing": 8.502522468566895, "vastly": 8.870122909545898, "republics": 9.450372695922852, "intellect": 9.075814247131348, "##\u03b7": 8.534225463867188, "##ulio": 11.13907527923584, "##tou": 7.858339309692383, "crumbling": 9.869226455688477, "stylistic": 9.61912727355957, "sb": 7.497707366943359, "##\u06cc": 9.685995101928711, "consolation": 10.599105834960938, "frequented": 10.22512149810791, "h\u2082o": 13.191643714904785, "walden": 9.498983383178711, "widows": 9.779396057128906, "##iens": 8.826038360595703, "404": 8.3527193069458, "##ignment": 9.502006530761719, "chunks": 8.094552040100098, "improves": 7.3093342781066895, "288": 8.356082916259766, "grit": 7.742166996002197, "recited": 10.200467109680176, "##dev": 8.416090965270996, "snarl": 10.52905559539795, "sociological": 8.936676025390625, "##arte": 8.6975736618042, "##gul": 7.122726917266846, "inquired": 10.669557571411133, "##held": 8.128089904785156, "bruise": 8.354640007019043, "clube": 13.024589538574219, "consultancy": 9.554855346679688, "homogeneous": 8.564000129699707, "hornets": 9.592257499694824, "multiplication": 8.428434371948242, "pasta": 6.90496826171875, "prick": 8.079837799072266, "savior": 9.292428970336914, "##grin": 8.972580909729004, "##kou": 10.127120018005371, "##phile": 9.140122413635254, "yoon": 11.14688777923584, "##gara": 10.26328182220459, "grimes": 9.90030574798584, "vanishing": 10.009808540344238, "cheering": 10.037872314453125, "reacting": 8.707100868225098, "bn": 8.4398832321167, "distillery": 9.62767505645752, "##quisite": 7.637157917022705, "##vity": 8.764078140258789, "coe": 7.114070415496826, "dockyard": 11.317512512207031, "massif": 10.074767112731934, "##jord": 10.516449928283691, "escorts": 10.83307933807373, "voss": 11.14688777923584, "##valent": 7.246460914611816, "byte": 8.41201114654541, "chopped": 7.305455207824707, "hawke": 9.424820899963379, "illusions": 10.085562705993652, "workings": 9.120287895202637, "floats": 8.56045150756836, "##koto": 10.734908103942871, "##vac": 7.438685894012451, "kv": 8.883899688720703, "annapolis": 9.532754898071289, "madden": 9.457588195800781, "##onus": 9.869226455688477, "alvaro": 11.355432510375977, "noctuidae": 13.392313957214355, "##cum": 6.811983108520508, "##scopic": 8.200386047363281, "avenge": 9.472175598144531, "steamboat": 9.27297592163086, "forte": 9.181010246276855, "illustrates": 7.938101291656494, "erika": 10.200467109680176, "##trip": 8.296748161315918, "570": 8.021331787109375, "dew": 7.504873752593994, "nationalities": 9.44178295135498, "bran": 7.538303852081299, "manifested": 8.97347354888916, "thirsty": 9.09982681274414, "diversified": 8.660347938537598, "muscled": 10.669557571411133, "reborn": 9.891326904296875, "##standing": 8.60946273803711, "arson": 9.605602264404297, "##lessness": 8.915398597717285, "##dran": 10.572258949279785, "##logram": 7.436380863189697, "##boys": 9.862690925598145, "##kushima": 10.323400497436523, "##vious": 8.949663162231445, "willoughby": 10.709264755249023, "##phobia": 8.772802352905273, "286": 8.586170196533203, "alsace": 10.043060302734375, "dashboard": 8.140040397644043, "yuki": 10.413389205932617, "##chai": 8.524495124816895, "granville": 10.292889595031738, "myspace": 9.66439151763916, "publicized": 9.64150333404541, "tricked": 10.200467109680176, "##gang": 9.205469131469727, "adjective": 6.356882572174072, "##ater": 7.668365955352783, "relic": 9.632838249206543, "reorganisation": 12.113439559936523, "enthusiastically": 10.479560852050781, "indications": 7.836058139801025, "saxe": 10.234525680541992, "##lassified": 9.980066299438477, "consolidate": 8.861309051513672, "iec": 9.17444133758545, "padua": 10.512283325195312, "helplessly": 11.828338623046875, "ramps": 9.00336742401123, "renaming": 9.85189151763916, "regulars": 10.132794380187988, "pedestrians": 9.367624282836914, "accents": 8.757585525512695, "convicts": 9.891326904296875, "inaccurate": 8.190956115722656, "lowers": 7.794029235839844, "mana": 7.928325176239014, "##pati": 6.164221286773682, "barrie": 10.333781242370605, "bjp": 11.355432510375977, "outta": 9.970346450805664, "someplace": 10.250399589538574, "berwick": 10.684264183044434, "flanking": 10.664703369140625, "invoked": 9.366301536560059, "marrow": 6.967685222625732, "sparsely": 9.296119689941406, "excerpts": 9.481032371520996, "clothed": 10.206573486328125, "rei": 6.5120062828063965, "##ginal": 6.57622766494751, "wept": 11.237112998962402, "##stra\u00dfe": 12.680817604064941, "##vish": 10.188364028930664, "alexa": 8.512603759765625, "excel": 6.0826802253723145, "##ptive": 8.553390502929688, "membranes": 6.778432846069336, "aquitaine": 10.664703369140625, "creeks": 9.2838716506958, "cutler": 9.331233024597168, "sheppard": 10.372793197631836, "implementations": 9.417838096618652, "ns": 6.773871898651123, "##dur": 8.526205062866211, "fragrance": 7.789375305175781, "budge": 9.824347496032715, "concordia": 10.286233901977539, "magnesium": 6.535423278808594, "marcelo": 11.87596607208252, "##antes": 10.77194881439209, "gladly": 9.843335151672363, "vibrating": 8.946183204650879, "##rral": 9.270570755004883, "##ggles": 8.96635913848877, "montrose": 10.499886512756348, "##omba": 10.49578857421875, "lew": 8.463719367980957, "seamus": 11.15476131439209, "1630": 9.593915939331055, "cocky": 10.69419002532959, "##ament": 9.355781555175781, "##uen": 8.092331886291504, "bjorn": 10.333781242370605, "##rrick": 10.719443321228027, "fielder": 9.927736282348633, "fluttering": 9.498983383178711, "##lase": 7.838350296020508, "methyl": 7.28101110458374, "kimberley": 10.31653881072998, "mcdowell": 10.077454566955566, "reductions": 8.615683555603027, "barbed": 9.56609058380127, "##jic": 10.39104175567627, "##tonic": 8.359941482543945, "aeronautical": 9.732558250427246, "condensed": 8.331830978393555, "distracting": 9.907093048095703, "##promising": 9.046586036682129, "huffed": 13.25416374206543, "##cala": 7.8674516677856445, "##sle": 7.61237096786499, "claudius": 9.845467567443848, "invincible": 10.3407621383667, "missy": 10.074767112731934, "pious": 10.362001419067383, "balthazar": 11.619246482849121, "ci": 5.126330375671387, "##lang": 8.304032325744629, "butte": 9.012604713439941, "combo": 7.925504684448242, "orson": 10.617413520812988, "##dication": 8.633946418762207, "myriad": 8.376998901367188, "1707": 10.035287857055664, "silenced": 10.916709899902344, "##fed": 8.252385139465332, "##rh": 6.103715419769287, "coco": 8.42224407196045, "netball": 10.788253784179688, "yourselves": 10.05614948272705, "##oza": 9.497474670410156, "clarify": 7.770170211791992, "heller": 10.069412231445312, "peg": 7.886229991912842, "durban": 10.256819725036621, "etudes": 12.39769172668457, "offender": 8.064977645874023, "roast": 6.127739429473877, "blackmail": 10.443984031677246, "curvature": 8.559861183166504, "##woods": 8.908683776855469, "vile": 10.032711029052734, "309": 8.60266399383545, "illicit": 8.695544242858887, "suriname": 9.625959396362305, "##linson": 10.037872314453125, "overture": 10.590076446533203, "1685": 10.203516006469727, "bubbling": 9.275386810302734, "gymnast": 9.089751243591309, "tucking": 10.413389205932617, "##mming": 9.270570755004883, "##ouin": 10.77735424041748, "maldives": 9.370274543762207, "##bala": 8.661654472351074, "gurney": 10.974417686462402, "##dda": 8.178788185119629, "##eased": 10.26328182220459, "##oides": 9.91392707824707, "backside": 9.508081436157227, "pinto": 8.927257537841797, "jars": 8.138877868652344, "racehorse": 10.22512149810791, "tending": 8.917083740234375, "##rdial": 7.769099235534668, "baronetcy": 12.974578857421875, "wiener": 10.26328182220459, "duly": 9.629392623901367, "##rke": 8.43779182434082, "barbarian": 9.934713363647461, "cupping": 10.025017738342285, "flawed": 9.368948936462402, "##thesis": 6.831912517547607, "bertha": 10.323400497436523, "pleistocene": 9.75570297241211, "puddle": 9.177720069885254, "swearing": 9.734466552734375, "##nob": 8.711898803710938, "##tically": 9.366301536560059, "fleeting": 9.994827270507812, "prostate": 6.794562339782715, "amulet": 9.847604751586914, "educating": 8.927257537841797, "##mined": 8.401881217956543, "##iti": 6.954680919647217, "##tler": 10.007296562194824, "75th": 8.21825885772705, "jens": 10.622042655944824, "respondents": 8.21825885772705, "analytics": 7.998181343078613, "cavaliers": 8.829124450683594, "papacy": 10.892093658447266, "raju": 11.711417198181152, "##iente": 9.828536033630371, "##ulum": 7.783385276794434, "##tip": 8.265488624572754, "funnel": 8.44723892211914, "271": 8.623828887939453, "disneyland": 8.15843677520752, "##lley": 9.907093048095703, "sociologist": 8.940985679626465, "##iam": 7.777700424194336, "2500": 7.668607711791992, "faulkner": 9.994827270507812, "louvre": 9.57419490814209, "menon": 12.293702125549316, "##dson": 10.413389205932617, "276": 8.496965408325195, "##ower": 8.986950874328613, "afterlife": 9.548490524291992, "mannheim": 10.83307933807373, "peptide": 7.645874500274658, "referees": 9.66974925994873, "comedians": 9.655527114868164, "meaningless": 9.196505546569824, "##anger": 8.97347354888916, "##laise": 10.4058837890625, "fabrics": 7.705589771270752, "hurley": 9.951184272766113, "renal": 6.882551670074463, "sleeps": 8.853363037109375, "##bour": 9.2838716506958, "##icle": 7.132024765014648, "breakout": 8.52392578125, "kristin": 9.419230461120605, "roadside": 8.582541465759277, "animator": 9.33635139465332, "clover": 8.564000129699707, "disdain": 10.08828067779541, "unsafe": 8.161205291748047, "redesign": 9.040842056274414, "##urity": 8.862905502319336, "firth": 10.306334495544434, "barnsley": 11.978620529174805, "portage": 9.644990921020508, "reset": 6.815277099609375, "narrows": 8.844694137573242, "268": 8.463183403015137, "commandos": 11.336292266845703, "expansive": 8.725735664367676, "speechless": 10.804828643798828, "tubular": 8.144315719604492, "##lux": 7.019689559936523, "essendon": 12.13427448272705, "eyelashes": 8.912875175476074, "smashwords": 12.717859268188477, "##yad": 9.182108879089355, "##bang": 9.937049865722656, "##claim": 8.199151992797852, "craved": 10.99441909790039, "sprinted": 12.838003158569336, "chet": 9.889095306396484, "somme": 9.437515258789062, "astor": 10.306334495544434, "wroc\u0142aw": 12.344346046447754, "orton": 10.755906105041504, "266": 8.40339469909668, "bane": 9.436097145080566, "##erving": 8.771343231201172, "##uing": 9.028508186340332, "mischief": 9.904826164245605, "##amps": 6.778234004974365, "##sund": 10.22512149810791, "scaling": 8.487039566040039, "terre": 8.581937789916992, "##xious": 8.993303298950195, "impairment": 7.3395280838012695, "offenses": 8.144315719604492, "undermine": 8.986950874328613, "moi": 8.847050666809082, "soy": 6.5047993659973145, "contiguous": 8.220357894897461, "arcadia": 9.652002334594727, "inuit": 9.372932434082031, "seam": 7.0999908447265625, "##tops": 7.832059860229492, "macbeth": 9.118223190307617, "rebelled": 10.39104175567627, "##icative": 9.146468162536621, "##iot": 7.253467559814453, "590": 8.285470962524414, "elaborated": 9.934713363647461, "frs": 9.816022872924805, "uniformed": 9.307271957397461, "##dberg": 9.76747989654541, "259": 8.492541313171387, "powerless": 9.960719108581543, "priscilla": 9.880215644836426, "stimulated": 8.233471870422363, "980": 8.305861473083496, "qc": 9.078784942626953, "arboretum": 10.31653881072998, "frustrating": 8.206584930419922, "trieste": 10.810415267944336, "bullock": 9.75765609741211, "##nified": 9.095785140991211, "enriched": 8.43258285522461, "glistening": 10.479560852050781, "intern": 7.52857780456543, "##adia": 8.928110122680664, "locus": 8.322012901306152, "nouvelle": 11.108421325683594, "ollie": 10.302956581115723, "ike": 7.7674946784973145, "lash": 9.013533592224121, "starboard": 9.869226455688477, "ee": 6.584870338439941, "tapestry": 9.830636978149414, "headlined": 10.64551830291748, "hove": 7.874266147613525, "rigged": 9.918508529663086, "##vite": 9.186516761779785, "pollock": 9.75765609741211, "##yme": 6.60230016708374, "thrive": 7.176595211029053, "clustered": 9.171174049377441, "cas": 7.167755603790283, "roi": 8.624458312988281, "gleamed": 12.545016288757324, "olympiad": 10.981040954589844, "##lino": 9.391737937927246, "pressured": 9.91392707824707, "regimes": 9.636295318603516, "##hosis": 7.559129238128662, "##lick": 9.337635040283203, "ripley": 9.91392707824707, "##ophone": 9.779396057128906, "kickoff": 9.577454566955566, "gallon": 6.354668617248535, "rockwell": 9.685995101928711, "##arable": 9.057204246520996, "crusader": 9.975194931030273, "glue": 7.226507186889648, "revolutions": 9.076803207397461, "scrambling": 10.107511520385742, "1714": 10.520634651184082, "grover": 9.36497974395752, "##jure": 8.207414627075195, "englishman": 9.923111915588379, "aztec": 8.28951644897461, "263": 8.481021881103516, "contemplating": 9.69697380065918, "coven": 10.631366729736328, "ipad": 6.73553991317749, "preach": 9.832742691040039, "triumphant": 10.01738452911377, "tufts": 9.2374906539917, "##esian": 9.63111400604248, "rotational": 8.540573120117188, "##phus": 9.570945739746094, "328": 8.407440185546875, "falkland": 10.337265014648438, "##brates": 7.572011470794678, "strewn": 10.669557571411133, "clarissa": 10.745351791381836, "rejoin": 9.822259902954102, "environmentally": 8.427399635314941, "glint": 11.170698165893555, "banded": 9.064997673034668, "drenched": 9.965520858764648, "moat": 10.250399589538574, "albanians": 11.619246482849121, "johor": 11.365140914916992, "rr": 7.762962341308594, "maestro": 10.250399589538574, "malley": 10.428569793701172, "nouveau": 10.292889595031738, "shaded": 8.651254653930664, "taxonomy": 8.338903427124023, "v6": 8.41916275024414, "adhere": 7.496076583862305, "bunk": 9.390382766723633, "airfields": 11.086031913757324, "##ritan": 7.6844658851623535, "1741": 10.508133888244629, "encompass": 8.217001914978027, "remington": 10.05089282989502, "tran": 7.642567157745361, "##erative": 7.478911399841309, "amelie": 11.415151596069336, "mazda": 9.104903221130371, "friar": 9.970346450805664, "morals": 9.214513778686523, "passions": 9.459036827087402, "##zai": 9.822259902954102, "breadth": 8.780867576599121, "vis": 6.63697624206543, "##hae": 8.142370223999023, "argus": 10.279622077941895, "burnham": 10.740116119384766, "caressing": 11.739391326904297, "insider": 7.810629367828369, "rudd": 9.655527114868164, "##imov": 10.929248809814453, "##mini": 7.570254802703857, "##rso": 7.779050827026367, "italianate": 12.073030471801758, "murderous": 10.2313814163208, "textual": 9.523430824279785, "wainwright": 10.684264183044434, "armada": 9.932381629943848, "bam": 8.668209075927734, "weave": 8.351760864257812, "timer": 7.841797828674316, "##taken": 9.81188678741455, "##nh": 6.118348121643066, "fra": 6.6971564292907715, "##crest": 9.153923034667969, "ardent": 9.799578666687012, "salazar": 10.862151145935059, "taps": 8.892915725708008, "tunis": 10.793747901916504, "##ntino": 9.907093048095703, "allegro": 10.64551830291748, "gland": 5.978254318237305, "philanthropic": 10.009808540344238, "##chester": 10.724571228027344, "implication": 9.149656295776367, "##optera": 9.753753662109375, "esq": 8.899524688720703, "judas": 10.572258949279785, "noticeably": 8.686796188354492, "wynn": 9.79348087310791, "##dara": 10.124295234680176, "inched": 11.467795372009277, "indexed": 8.662307739257812, "crises": 9.335068702697754, "villiers": 12.073030471801758, "bandit": 10.014852523803711, "royalties": 9.056234359741211, "patterned": 9.12755012512207, "cupboard": 9.189835548400879, "interspersed": 9.88686752319336, "accessory": 7.680539131164551, "isla": 9.309767723083496, "kendrick": 9.447501182556152, "entourage": 10.155817031860352, "stitches": 8.224991798400879, "##esthesia": 7.068419933319092, "headwaters": 9.822259902954102, "##ior": 7.901694297790527, "interlude": 10.650279998779297, "distraught": 11.001175880432129, "draught": 9.689640998840332, "1727": 10.2313814163208, "##basket": 10.550423622131348, "biased": 9.20209789276123, "sy": 5.044065475463867, "transient": 8.031370162963867, "triad": 8.9111967086792, "subgenus": 10.64551830291748, "adapting": 9.10084056854248, "kidd": 9.050434112548828, "shortstop": 10.048274993896484, "##umatic": 7.825242519378662, "dimly": 10.892093658447266, "spiked": 9.528081893920898, "mcleod": 10.158732414245605, "reprint": 9.413671493530273, "nellie": 10.436246871948242, "pretoria": 10.266529083251953, "windmill": 9.5405912399292, "##cek": 11.263200759887695, "singled": 10.358429908752441, "##mps": 9.036080360412598, "273": 8.135397911071777, "reunite": 9.393095016479492, "##orous": 8.270336151123047, "747": 8.678788185119629, "bankers": 8.53537654876709, "outlying": 9.86052131652832, "##omp": 7.311194896697998, "##ports": 8.74614429473877, "##tream": 8.785293579101562, "apologies": 10.14712142944336, "cosmetics": 7.777700424194336, "patsy": 9.992352485656738, "##deh": 8.14042854309082, "##ocks": 7.893174648284912, "##yson": 9.726855278015137, "bender": 9.873607635498047, "nantes": 10.974417686462402, "serene": 9.393095016479492, "##nad": 7.795677185058594, "lucha": 11.108421325683594, "mmm": 9.799578666687012, "323": 8.36770248413086, "##cius": 9.773420333862305, "##gli": 7.646111011505127, "cmll": 14.123201370239258, "coinage": 9.366301536560059, "nestor": 10.981040954589844, "juarez": 10.155817031860352, "##rook": 9.93005657196045, "smeared": 10.689214706420898, "sprayed": 8.536529541015625, "twitching": 8.47829818725586, "sterile": 7.619719982147217, "irina": 11.18689250946045, "embodied": 9.367624282836914, "juveniles": 9.24917984008789, "enveloped": 9.925421714782715, "miscellaneous": 8.138877868652344, "cancers": 6.835588455200195, "dq": 10.256819725036621, "gulped": 13.132802963256836, "luisa": 11.500764846801758, "crested": 9.502006530761719, "swat": 8.47287368774414, "donegal": 10.424753189086914, "ref": 4.951066493988037, "##anov": 11.162697792053223, "##acker": 9.523430824279785, "hearst": 9.805713653564453, "mercantile": 10.05351734161377, "##lika": 10.376416206359863, "doorbell": 10.234525680541992, "ua": 7.707098007202148, "vicki": 9.816022872924805, "##alla": 9.437515258789062, "##som": 7.473121643066406, "bilbao": 10.3407621383667, "psychologists": 7.7736592292785645, "stryker": 10.508133888244629, "sw": 6.037477970123291, "horsemen": 10.734908103942871, "turkmenistan": 9.984962463378906, "wits": 10.188364028930664, "##national": 9.546905517578125, "anson": 10.358429908752441, "mathew": 10.273054122924805, "screenings": 9.10185432434082, "##umb": 7.022857189178467, "rihanna": 9.280226707458496, "##agne": 9.678742408752441, "##nessy": 10.409629821777344, "aisles": 9.753753662109375, "##iani": 9.481032371520996, "##osphere": 7.880828857421875, "hines": 9.5405912399292, "kenton": 10.581128120422363, "saskatoon": 10.38005256652832, "tasha": 10.821682929992676, "truncated": 9.702508926391602, "##champ": 10.679337501525879, "##itan": 7.858339309692383, "mildred": 10.1853609085083, "advises": 8.449878692626953, "fredrik": 11.100902557373047, "interpreting": 8.409468650817871, "inhibitors": 7.576416015625, "##athi": 8.873347282409668, "spectroscopy": 9.529637336730957, "##hab": 8.000203132629395, "##kong": 9.719300270080566, "karim": 10.52905559539795, "panda": 8.173561096191406, "##oia": 8.635217666625977, "##nail": 7.518320083618164, "##vc": 8.034156799316406, "conqueror": 9.140122413635254, "kgb": 9.25744342803955, "leukemia": 7.698083400726318, "##dity": 8.34127140045166, "arrivals": 8.800942420959473, "cheered": 10.679337501525879, "pisa": 9.183208465576172, "phosphorus": 7.42512321472168, "shielded": 9.624246597290039, "##riated": 8.572929382324219, "mammal": 7.705841064453125, "unitarian": 10.78278923034668, "urgently": 9.939391136169434, "chopin": 10.39104175567627, "sanitary": 8.894564628601074, "##mission": 8.058164596557617, "spicy": 7.4070725440979, "drugged": 10.838826179504395, "hinges": 8.769886016845703, "##tort": 8.914556503295898, "tipping": 8.841561317443848, "trier": 10.499886512756348, "impoverished": 9.721183776855469, "westchester": 9.045626640319824, "##caster": 9.448936462402344, "267": 8.475040435791016, "epoch": 8.96193790435791, "nonstop": 8.618183135986328, "##gman": 9.314776420593262, "##khov": 11.035661697387695, "aromatic": 7.727683067321777, "centrally": 8.421216011047363, "cerro": 10.508133888244629, "##tively": 9.484002113342285, "##vio": 8.272547721862793, "billions": 7.978850841522217, "modulation": 9.041797637939453, "sedimentary": 7.5866217613220215, "283": 8.533650398254395, "facilitating": 8.910358428955078, "outrageous": 9.00336742401123, "goldstein": 10.043060302734375, "##eak": 8.378474235534668, "##kt": 7.775543212890625, "ld": 7.038846015930176, "maitland": 10.684264183044434, "penultimate": 10.471545219421387, "pollard": 10.679337501525879, "##dance": 9.721183776855469, "fleets": 9.724961280822754, "spaceship": 9.832742691040039, "vertebrae": 7.492619514465332, "##nig": 9.238653182983398, "alcoholism": 8.26680850982666, "als": 8.074012756347656, "recital": 10.409629821777344, "##bham": 11.28998851776123, "##ference": 7.446602821350098, "##omics": 8.960175514221191, "m2": 8.062103271484375, "##bm": 8.066778182983398, "trois": 11.035661697387695, "##tropical": 9.843335151672363, "##\u0432": 9.797541618347168, "commemorates": 9.390382766723633, "##meric": 7.517487525939941, "marge": 10.037872314453125, "##raction": 8.545796394348145, "1643": 10.250399589538574, "670": 8.240736961364746, "cosmetic": 7.287107467651367, "ravaged": 10.004790306091309, "##ige": 7.4350385665893555, "catastrophe": 9.303540229797363, "eng": 7.313229084014893, "##shida": 11.365140914916992, "albrecht": 10.546113967895508, "arterial": 7.573991298675537, "bellamy": 10.440108299255371, "decor": 7.361005783081055, "harmon": 8.116659164428711, "##rde": 8.802445411682129, "bulbs": 7.463414669036865, "synchronized": 9.042753219604492, "vito": 9.66617488861084, "easiest": 6.5670952796936035, "shetland": 9.78139591217041, "shielding": 9.252713203430176, "wnba": 9.676937103271484, "##glers": 10.141366004943848, "##ssar": 9.38632869720459, "##riam": 8.010711669921875, "brianna": 10.640778541564941, "cumbria": 10.810415267944336, "##aceous": 8.381925582885742, "##rard": 9.91392707824707, "cores": 8.647381782531738, "thayer": 10.39104175567627, "##nsk": 10.206573486328125, "brood": 8.43518352508545, "hilltop": 9.875805854797363, "luminous": 8.988761901855469, "carts": 8.861309051513672, "keynote": 9.532754898071289, "larkin": 10.740116119384766, "logos": 8.091961860656738, "##cta": 7.12835168838501, "##\u0627": 8.554563522338867, "##mund": 10.129953384399414, "##quay": 10.684264183044434, "lilith": 11.25442886352539, "tinted": 9.263389587402344, "277": 8.428951263427734, "wrestle": 10.152910232543945, "mobilization": 9.302299499511719, "##uses": 7.4126787185668945, "sequential": 8.462647438049316, "siam": 9.167916297912598, "bloomfield": 9.902563095092773, "takahashi": 11.374944686889648, "274": 8.628874778747559, "##ieving": 9.371603012084961, "presenters": 10.170479774475098, "ringo": 9.824347496032715, "blazed": 11.162697792053223, "witty": 9.395813941955566, "##oven": 9.238653182983398, "##ignant": 9.620831489562988, "devastation": 9.545323371887207, "haydn": 10.351325035095215, "harmed": 9.200977325439453, "newt": 9.486980438232422, "therese": 10.60365104675293, "##peed": 9.36366081237793, "gershwin": 10.699189186096191, "molina": 9.951184272766113, "rabbis": 10.974417686462402, "sudanese": 10.487641334533691, "001": 7.441189289093018, "innate": 8.3943510055542, "restarted": 9.970346450805664, "##sack": 9.31981086730957, "##fus": 7.989136219024658, "slices": 7.208470821380615, "wb": 7.811466693878174, "##shah": 11.18689250946045, "enroll": 7.042592525482178, "hypothetical": 8.576522827148438, "hysterical": 10.524836540222168, "1743": 10.074767112731934, "fabio": 11.071379661560059, "indefinite": 8.710525512695312, "warped": 9.893564224243164, "##hg": 8.076192855834961, "exchanging": 9.064997673034668, "525": 8.354159355163574, "unsuitable": 9.577454566955566, "##sboro": 8.921310424804688, "gallo": 8.786773681640625, "1603": 9.592257499694824, "bret": 9.653762817382812, "cobalt": 8.63014030456543, "homemade": 7.336918830871582, "##hunter": 9.662612915039062, "mx": 8.56045150756836, "operatives": 10.572258949279785, "##dhar": 9.715544700622559, "terraces": 9.963117599487305, "durable": 6.8857550621032715, "latch": 8.491990089416504, "pens": 8.169958114624023, "whorls": 10.868067741394043, "##ctuated": 9.498983383178711, "##eaux": 10.69419002532959, "billing": 7.028201103210449, "ligament": 6.67827844619751, "succumbed": 10.2408447265625, "##gly": 6.731170177459717, "regulators": 8.522787094116211, "spawn": 8.11401081085205, "##brick": 9.820176124572754, "##stead": 9.062067985534668, "filmfare": 11.81295394897461, "rochelle": 10.08828067779541, "##nzo": 8.923006057739258, "1725": 10.188364028930664, "circumstance": 8.674145698547363, "saber": 9.771435737609863, "supplements": 6.244405269622803, "##nsky": 10.981040954589844, "##tson": 10.383702278137207, "crowe": 9.856197357177734, "wellesley": 10.365585327148438, "carrot": 6.863003253936768, "##9th": 10.155817031860352, "##movable": 7.928011417388916, "primate": 8.296748161315918, "drury": 10.475544929504395, "sincerely": 9.740214347839355, "topical": 7.150739669799805, "##mad": 8.874155044555664, "##rao": 10.679337501525879, "callahan": 10.508133888244629, "kyiv": 11.619246482849121, "smarter": 8.62257194519043, "tits": 11.042703628540039, "undo": 8.350802421569824, "##yeh": 11.415151596069336, "announcements": 8.484847068786621, "anthologies": 11.345816612243652, "barrio": 10.761224746704102, "nebula": 9.027565002441406, "##islaus": 10.31653881072998, "##shaft": 8.546379089355469, "##tyn": 10.206573486328125, "bodyguards": 10.99441909790039, "2021": 9.307271957397461, "assassinate": 10.655064582824707, "barns": 9.037030220031738, "emmett": 9.849745750427246, "scully": 10.844606399536133, "##mah": 8.77792739868164, "##yd": 7.117552280426025, "##eland": 10.581128120422363, "##tino": 7.814822673797607, "##itarian": 8.956659317016602, "demoted": 10.77194881439209, "gorman": 10.816033363342285, "lashed": 11.078679084777832, "prized": 8.510915756225586, "adventist": 10.032711029052734, "writ": 8.605131149291992, "##gui": 8.394851684570312, "alla": 8.136942863464355, "invertebrates": 8.241595268249512, "##ausen": 10.766572952270508, "1641": 10.916709899902344, "amman": 10.440108299255371, "1742": 10.491706848144531, "align": 7.608033180236816, "healy": 10.590076446533203, "redistribution": 10.048274993896484, "##gf": 8.433622360229492, "##rize": 8.204514503479004, "insulation": 7.219377040863037, "##drop": 8.398360252380371, "adherents": 9.785408020019531, "hezbollah": 11.670870780944824, "vitro": 8.490887641906738, "ferns": 8.633946418762207, "yanking": 12.15555191040039, "269": 8.420188903808594, "php": 7.928011417388916, "registering": 8.21407413482666, "uppsala": 11.582205772399902, "cheerleading": 9.548490524291992, "confines": 9.620831489562988, "mischievous": 9.734466552734375, "tully": 10.838826179504395, "##ross": 9.185412406921387, "49th": 9.787420272827148, "docked": 9.715544700622559, "roam": 8.549294471740723, "stipulated": 9.366301536560059, "pumpkin": 7.659212589263916, "##bry": 9.379608154296875, "prompt": 6.773674011230469, "##ezer": 10.074767112731934, "blindly": 10.599105834960938, "shuddering": 12.269309997558594, "craftsmen": 9.684176445007324, "frail": 9.38632869720459, "scented": 9.036080360412598, "katharine": 9.820176124572754, "scramble": 9.269370079040527, "shaggy": 9.638028144836426, "sponge": 7.367611885070801, "helix": 7.91461181640625, "zaragoza": 11.211687088012695, "279": 8.583145141601562, "##52": 7.648005962371826, "43rd": 9.873607635498047, "backlash": 9.745994567871094, "fontaine": 10.626693725585938, "seizures": 6.97322416305542, "posse": 9.355781555175781, "cowan": 10.987707138061523, "nonfiction": 9.322338104248047, "telenovela": 11.228565216064453, "wwii": 8.463183403015137, "hammered": 9.805713653564453, "undone": 10.030139923095703, "##gpur": 11.100902557373047, "encircled": 10.428569793701172, "irs": 5.928101539611816, "##ivation": 8.821428298950195, "artefacts": 10.862151145935059, "oneself": 8.267688751220703, "searing": 9.394453048706055, "smallpox": 9.14434814453125, "##belle": 10.6082181930542, "##osaurus": 10.093737602233887, "shandong": 10.709264755249023, "breached": 9.66617488861084, "upland": 9.023804664611816, "blushing": 10.440108299255371, "rankin": 9.854042053222656, "infinitely": 9.443209648132324, "psyche": 9.36366081237793, "tolerated": 8.540573120117188, "docking": 9.367624282836914, "evicted": 10.299589157104492, "##col": 6.58922004699707, "unmarked": 10.10197925567627, "##lving": 8.314135551452637, "gnome": 10.022467613220215, "lettering": 9.569324493408203, "litres": 8.175970077514648, "musique": 12.053421974182129, "##oint": 8.538260459899902, "benevolent": 9.671541213989258, "##jal": 9.500494003295898, "blackened": 10.113075256347656, "##anna": 9.551668167114258, "mccall": 9.795509338378906, "racers": 9.69881534576416, "tingle": 10.074767112731934, "##ocene": 10.2313814163208, "##orestation": 8.95403003692627, "introductions": 9.898054122924805, "radically": 9.253893852233887, "292": 8.524495124816895, "##hiff": 9.582365036010742, "##\u0628\u0627\u062f": 13.25416374206543, "1610": 9.470707893371582, "1739": 10.72972583770752, "munchen": 11.336292266845703, "plead": 9.15499210357666, "##nka": 9.350563049316406, "condo": 7.131600379943848, "scissors": 8.330891609191895, "##sight": 8.12464714050293, "##tens": 7.624108791351318, "apprehension": 9.398540496826172, "##cey": 10.237680435180664, "##yin": 10.247204780578613, "hallmark": 8.10535717010498, "watering": 7.787465572357178, "formulas": 7.328787326812744, "sequels": 9.355781555175781, "##llas": 8.81379222869873, "aggravated": 8.549294471740723, "bae": 8.870122909545898, "commencing": 9.605602264404297, "##building": 8.8016939163208, "enfield": 10.289556503295898, "prohibits": 8.276985168457031, "marne": 10.504002571105957, "vedic": 9.476593971252441, "civilized": 9.675134658813477, "euclidean": 9.891326904296875, "jagger": 9.636295318603516, "beforehand": 8.768430709838867, "blasts": 9.502006530761719, "dumont": 10.793747901916504, "##arney": 10.01738452911377, "##nem": 8.183232307434082, "740": 8.226259231567383, "conversions": 8.065696716308594, "hierarchical": 8.846264839172363, "rios": 10.05878734588623, "simulator": 8.97347354888916, "##dya": 10.546113967895508, "##lellan": 9.61234188079834, "hedges": 9.562868118286133, "oleg": 11.670870780944824, "thrusts": 10.78278923034668, "shadowed": 11.308253288269043, "darby": 9.951184272766113, "maximize": 7.301255702972412, "1744": 10.443984031677246, "gregorian": 8.827580451965332, "##nded": 9.090754508972168, "##routed": 9.349263191223145, "sham": 7.227596759796143, "unspecified": 8.844694137573242, "##hog": 8.126175880432129, "emory": 9.410902976989746, "factual": 8.80621337890625, "##smo": 7.844680309295654, "##tp": 7.907209873199463, "fooled": 9.448936462402344, "##rger": 9.211112022399902, "ortega": 10.409629821777344, "wellness": 7.489174842834473, "marlon": 9.828536033630371, "##oton": 7.335009574890137, "##urance": 7.98846960067749, "casket": 8.960175514221191, "keating": 10.581128120422363, "ley": 9.064020156860352, "enclave": 9.316032409667969, "##ayan": 10.524836540222168, "char": 6.972379684448242, "influencing": 8.626348495483398, "jia": 9.795509338378906, "##chenko": 12.22224235534668, "412": 8.590420722961426, "ammonia": 7.4236063957214355, "erebidae": 14.490926742553711, "incompatible": 9.046586036682129, "violins": 10.234525680541992, "cornered": 10.376416206359863, "##arat": 7.885929107666016, "grooves": 8.80923843383789, "astronauts": 8.6975736618042, "columbian": 8.947052001953125, "rampant": 9.55325984954834, "fabrication": 8.615059852600098, "kyushu": 10.152910232543945, "mahmud": 12.199514389038086, "vanish": 9.689640998840332, "##dern": 9.430442810058594, "mesopotamia": 8.386877059936523, "##lete": 9.326140403747559, "ict": 8.769158363342285, "##rgen": 9.83485221862793, "caspian": 9.256258964538574, "kenji": 11.374944686889648, "pitted": 9.40952205657959, "##vered": 9.328682899475098, "999": 7.709364414215088, "grimace": 10.987707138061523, "roanoke": 9.042753219604492, "tchaikovsky": 10.850419998168945, "twinned": 11.500764846801758, "##analysis": 9.178815841674805, "##awan": 9.482515335083008, "xinjiang": 10.684264183044434, "arias": 10.3407621383667, "clemson": 9.561260223388672, "kazakh": 10.719443321228027, "sizable": 9.280226707458496, "1662": 10.810415267944336, "##khand": 11.001175880432129, "##vard": 10.279622077941895, "plunge": 8.25586223602295, "tatum": 9.822259902954102, "vittorio": 11.195089340209961, "##nden": 9.920807838439941, "cholera": 8.896215438842773, "##dana": 9.904826164245605, "##oper": 7.619028568267822, "bracing": 9.634565353393555, "indifference": 9.858357429504395, "projectile": 9.007051467895508, "superliga": 13.854937553405762, "##chee": 9.36497974395752, "realises": 11.523365020751953, "upgrading": 8.281888961791992, "299": 8.048209190368652, "porte": 9.481032371520996, "retribution": 10.463592529296875, "##vies": 8.874155044555664, "nk": 8.771343231201172, "stil": 8.880640983581543, "##resses": 9.934713363647461, "ama": 7.062065124511719, "bureaucracy": 9.285089492797852, "blackberry": 8.342695236206055, "bosch": 9.333788871765137, "testosterone": 7.2505950927734375, "collapses": 9.380949020385742, "greer": 9.880215644836426, "##pathic": 7.664019584655762, "ioc": 10.282922744750977, "fifties": 10.132794380187988, "malls": 8.962821006774902, "##erved": 10.451781272888184, "bao": 9.660836219787598, "baskets": 8.832993507385254, "adolescents": 7.731800079345703, "siegfried": 11.28998851776123, "##osity": 8.89209270477295, "##tosis": 7.803125381469727, "mantra": 9.253893852233887, "detecting": 8.18161392211914, "existent": 8.812272071838379, "fledgling": 9.579089164733887, "##cchi": 8.0831298828125, "dissatisfied": 9.79145622253418, "gan": 7.577962398529053, "telecommunication": 9.22708511352539, "mingled": 10.827364921569824, "sobbed": 12.974578857421875, "6000": 8.088272094726562, "controversies": 9.706216812133789, "outdated": 8.469633102416992, "taxis": 8.874155044555664, "##raus": 9.569324493408203, "fright": 9.176626205444336, "slams": 9.975194931030273, "##lham": 10.182367324829102, "##fect": 6.428493499755859, "##tten": 8.517682075500488, "detectors": 8.8423433303833, "fetal": 7.467761516571045, "tanned": 10.009808540344238, "##uw": 7.714166164398193, "fray": 9.17444133758545, "goth": 9.271772384643555, "olympian": 9.093770027160645, "skipping": 8.52849006652832, "mandates": 8.868515014648438, "scratches": 8.44723892211914, "sheng": 10.631366729736328, "unspoken": 10.669557571411133, "hyundai": 8.505311965942383, "tracey": 10.14712142944336, "hotspur": 11.336292266845703, "restrictive": 8.473957061767578, "##buch": 9.728752136230469, "americana": 9.49596881866455, "mundo": 10.755906105041504, "##bari": 9.135913848876953, "burroughs": 10.333781242370605, "diva": 8.772072792053223, "vulcan": 9.146468162536621, "##6th": 10.26978588104248, "distinctions": 8.870927810668945, "thumping": 10.766572952270508, "##ngen": 9.025683403015137, "mikey": 10.664703369140625, "sheds": 8.6416015625, "fide": 8.633310317993164, "rescues": 9.923111915588379, "springsteen": 9.904826164245605, "vested": 8.620060920715332, "valuation": 7.528367042541504, "##ece": 8.252819061279297, "##ely": 9.19205379486084, "pinnacle": 8.974366188049316, "rake": 8.533076286315918, "sylvie": 11.828338623046875, "##edo": 9.380949020385742, "almond": 7.172313213348389, "quivering": 10.650279998779297, "##irus": 8.136170387268066, "alteration": 8.310909271240234, "faltered": 11.725306510925293, "##wad": 9.911643981933594, "51st": 10.064085960388184, "hydra": 6.883213520050049, "ticked": 10.475544929504395, "##kato": 10.10197925567627, "recommends": 6.8001322746276855, "##dicated": 9.172262191772461, "antigua": 9.713671684265137, "arjun": 10.699189186096191, "stagecoach": 10.188364028930664, "wilfred": 10.617413520812988, "trickle": 9.331233024597168, "pronouns": 8.685457229614258, "##pon": 6.96277379989624, "aryan": 9.27297592163086, "nighttime": 8.387870788574219, "##anian": 10.286233901977539, "gall": 6.517503261566162, "pea": 7.558044910430908, "stitch": 7.834914207458496, "##hei": 8.623828887939453, "leung": 11.711417198181152, "milos": 10.87402057647705, "##dini": 9.878008842468262, "eritrea": 9.615729331970215, "nexus": 8.615059852600098, "starved": 9.700660705566406, "snowfall": 7.882925987243652, "kant": 8.872540473937988, "parasitic": 7.800360202789307, "cot": 7.721029281616211, "discus": 10.21271800994873, "hana": 9.194276809692383, "strikers": 10.987707138061523, "appleton": 9.830636978149414, "kitchens": 8.4171142578125, "##erina": 7.017415523529053, "##partisan": 9.105921745300293, "##itha": 10.282922744750977, "##vius": 9.27297592163086, "disclose": 8.334182739257812, "metis": 9.946450233459473, "##channel": 9.55325984954834, "1701": 9.916215896606445, "tesla": 7.864208698272705, "##vera": 8.64288330078125, "fitch": 9.726855278015137, "1735": 10.113075256347656, "blooded": 8.662961959838867, "##tila": 8.628874778747559, "decimal": 7.101774215698242, "##tang": 9.554855346679688, "##bai": 9.129633903503418, "cyclones": 8.997864723205566, "eun": 9.66974925994873, "bottled": 8.085330963134766, "peas": 7.191204071044922, "pensacola": 9.048508644104004, "basha": 10.443984031677246, "bolivian": 10.394731521606445, "crabs": 8.063899040222168, "boil": 6.216824531555176, "lanterns": 9.937049865722656, "partridge": 9.992352485656738, "roofed": 10.740116119384766, "1645": 10.850419998168945, "necks": 9.118223190307617, "##phila": 10.027575492858887, "opined": 11.684205055236816, "patting": 11.115997314453125, "##kla": 9.463397979736328, "##lland": 10.974417686462402, "chuckles": 12.483458518981934, "volta": 8.887168884277344, "whereupon": 11.056939125061035, "##nche": 9.135913848876953, "devout": 9.719300270080566, "euroleague": 12.838003158569336, "suicidal": 8.836100578308105, "##dee": 8.866106986999512, "inherently": 8.787514686584473, "involuntary": 7.50466775894165, "knitting": 9.027565002441406, "nasser": 10.755906105041504, "##hide": 9.371603012084961, "puppets": 10.170479774475098, "colourful": 9.2838716506958, "courageous": 9.135913848876953, "southend": 11.15476131439209, "stills": 9.867043495178223, "miraculous": 9.221351623535156, "hodgson": 10.987707138061523, "richer": 8.660347938537598, "rochdale": 11.797801971435547, "ethernet": 7.736452102661133, "greta": 10.4058837890625, "uniting": 9.69697380065918, "prism": 8.309530258178711, "umm": 8.577122688293457, "##haya": 10.67443561553955, "##itical": 9.10084056854248, "##utation": 8.47829818725586, "deterioration": 8.384893417358398, "pointe": 9.366301536560059, "prowess": 9.676937103271484, "##ropriation": 9.311017036437988, "lids": 8.819131851196289, "scranton": 9.856197357177734, "billings": 9.40952205657959, "subcontinent": 8.821428298950195, "##koff": 10.032711029052734, "##scope": 8.893739700317383, "brute": 9.617426872253418, "kellogg": 9.4795503616333, "psalms": 9.916215896606445, "degraded": 9.262197494506836, "##vez": 10.121478080749512, "stanis\u0142aw": 13.024589538574219, "##ructured": 9.569324493408203, "ferreira": 12.22224235534668, "pun": 6.611845016479492, "astonishing": 8.814553260803223, "gunnar": 10.89819049835205, "##yat": 8.634581565856934, "arya": 10.014852523803711, "prc": 9.689640998840332, "gottfried": 10.626693725585938, "##tight": 7.9327287673950195, "excursion": 8.69284439086914, "##ographer": 8.712586402893066, "dina": 9.245657920837402, "##quil": 7.3560357093811035, "##nare": 9.135913848876953, "huffington": 9.372932434082031, "illustrious": 9.765506744384766, "wilbur": 9.412286758422852, "gundam": 11.404947280883789, "verandah": 11.594400405883789, "##zard": 9.357090950012207, "naacp": 9.387678146362305, "##odle": 7.907824516296387, "constructive": 8.716719627380371, "fjord": 9.678742408752441, "kade": 10.365585327148438, "##naud": 9.199857711791992, "generosity": 9.332509994506836, "thrilling": 9.09982681274414, "baseline": 7.780403137207031, "cayman": 9.05429744720459, "frankish": 10.188364028930664, "plastics": 7.850469589233398, "accommodations": 7.838636875152588, "zoological": 9.828536033630371, "##fting": 9.732558250427246, "cedric": 10.504002571105957, "qb": 8.942715644836426, "motorized": 9.175533294677734, "##dome": 8.521082878112793, "##otted": 10.048274993896484, "squealed": 14.290255546569824, "tackled": 10.164588928222656, "canucks": 11.534859657287598, "budgets": 8.242453575134277, "situ": 8.739765167236328, "asthma": 6.820964336395264, "dail": 10.365585327148438, "gabled": 11.753677368164062, "grasslands": 8.18729019165039, "whimpered": 13.552656173706055, "writhing": 11.500764846801758, "judgments": 8.575323104858398, "##65": 7.471927642822266, "minnie": 9.687816619873047, "pv": 7.037944316864014, "##carbon": 6.932873249053955, "bananas": 7.491605281829834, "grille": 7.398537635803223, "domes": 9.761573791503906, "monique": 10.684264183044434, "odin": 9.57419490814209, "maguire": 10.369182586669922, "markham": 10.57668399810791, "tierney": 11.317512512207031, "##estra": 9.662612915039062, "##chua": 9.349263191223145, "libel": 9.569324493408203, "poke": 8.157647132873535, "speedy": 8.832993507385254, "atrium": 7.742166996002197, "laval": 10.479560852050781, "notwithstanding": 9.506559371948242, "##edly": 10.679337501525879, "fai": 9.090754508972168, "kala": 8.335597038269043, "##sur": 7.343891620635986, "robb": 9.072853088378906, "##sma": 8.191773414611816, "listings": 6.484595775604248, "luz": 9.944091796875, "supplementary": 8.707785606384277, "tianjin": 10.590076446533203, "##acing": 9.182108879089355, "enzo": 10.085562705993652, "jd": 8.396855354309082, "ric": 8.716719627380371, "scanner": 7.754486560821533, "croats": 11.078679084777832, "transcribed": 8.668209075927734, "##49": 7.582615852355957, "arden": 9.3518648147583, "cv": 7.229467391967773, "##hair": 8.815315246582031, "##raphy": 9.430442810058594, "##lver": 8.759024620056152, "##uy": 8.70436954498291, "357": 8.61880874633789, "seventies": 9.918508529663086, "staggering": 8.4947509765625, "alam": 7.882625579833984, "horticultural": 9.577454566955566, "hs": 6.888303279876709, "regression": 8.338903427124023, "timbers": 9.841207504272461, "blasting": 9.431854248046875, "##ounded": 10.096477508544922, "montagu": 9.81188678741455, "manipulating": 9.24917984008789, "##cit": 6.824184417724609, "catalytic": 8.552218437194824, "1550": 9.520341873168945, "troopers": 10.014852523803711, "##meo": 9.667960166931152, "condemnation": 10.05089282989502, "fitzpatrick": 10.504002571105957, "##oire": 10.376416206359863, "##roved": 9.520341873168945, "inexperienced": 9.448936462402344, "1670": 9.982511520385742, "castes": 10.383702278137207, "##lative": 8.227105140686035, "outing": 9.05429744720459, "314": 8.478842735290527, "dubois": 9.927736282348633, "flicking": 11.100902557373047, "quarrel": 9.602249145507812, "ste": 5.638579368591309, "learners": 6.844785213470459, "1625": 10.282922744750977, "iq": 7.630612373352051, "whistled": 11.960762977600098, "##class": 8.027896881103516, "282": 8.485394477844238, "classify": 7.595806121826172, "tariffs": 8.903677940368652, "temperament": 8.381431579589844, "355": 8.350802421569824, "folly": 9.880215644836426, "liszt": 11.28097915649414, "##yles": 10.080150604248047, "immersed": 8.993303298950195, "jordanian": 10.766572952270508, "ceasefire": 11.064133644104004, "apparel": 8.00900936126709, "extras": 8.406427383422852, "maru": 9.69697380065918, "fished": 9.994827270507812, "##bio": 7.816505432128906, "harta": 13.743711471557617, "stockport": 11.644725799560547, "assortment": 8.200798988342285, "craftsman": 8.494197845458984, "paralysis": 7.641624450683594, "transmitters": 9.771435737609863, "##cola": 8.59529972076416, "blindness": 7.830920696258545, "##wk": 8.608222961425781, "fatally": 9.610652923583984, "proficiency": 8.590420722961426, "solemnly": 11.001175880432129, "##orno": 10.376416206359863, "repairing": 8.117795944213867, "amore": 10.512283325195312, "groceries": 8.364785194396973, "ultraviolet": 7.686435222625732, "##chase": 9.120287895202637, "schoolhouse": 10.362001419067383, "##tua": 9.102869987487793, "resurgence": 9.518800735473633, "nailed": 9.470707893371582, "##otype": 7.854834079742432, "##\u00d7": 8.061386108398438, "ruse": 10.679337501525879, "saliva": 6.797495365142822, "diagrams": 8.261977195739746, "##tructing": 9.69881534576416, "albans": 10.745351791381836, "rann": 11.500764846801758, "thirties": 9.941739082336426, "1b": 8.565779685974121, "antennas": 9.186516761779785, "hilarious": 8.574125289916992, "cougars": 10.009808540344238, "paddington": 10.244019508361816, "stats": 7.362252235412598, "##eger": 9.721183776855469, "breakaway": 10.376416206359863, "ipod": 7.320379734039307, "reza": 10.699189186096191, "authorship": 9.85189151763916, "prohibiting": 9.051399230957031, "scoffed": 11.828338623046875, "##etz": 9.502006530761719, "##ttle": 8.553977012634277, "conscription": 10.309724807739258, "defected": 11.317512512207031, "trondheim": 11.582205772399902, "##fires": 9.175533294677734, "ivanov": 10.974417686462402, "keenan": 10.916709899902344, "##adan": 10.459639549255371, "##ciful": 9.572568893432617, "##fb": 9.2374906539917, "##slow": 10.228246688842773, "locating": 8.538838386535645, "##ials": 7.81007194519043, "##tford": 10.804828643798828, "cadiz": 10.471545219421387, "basalt": 8.332301139831543, "blankly": 12.926950454711914, "interned": 11.064133644104004, "rags": 9.410902976989746, "rattling": 10.05351734161377, "##tick": 8.056023597717285, "carpathian": 10.463592529296875, "reassured": 10.793747901916504, "sync": 6.630955696105957, "bum": 8.32995319366455, "guildford": 11.15476131439209, "iss": 7.547267913818359, "staunch": 10.05351734161377, "##onga": 8.39986801147461, "astronomers": 8.41201114654541, "sera": 9.163589477539062, "sofie": 11.753677368164062, "emergencies": 8.236029624938965, "susquehanna": 9.963117599487305, "##heard": 9.039888381958008, "duc": 8.220778465270996, "mastery": 8.925555229187012, "vh1": 9.638028144836426, "williamsburg": 9.037030220031738, "bayer": 9.37826919555664, "buckled": 10.541821479797363, "craving": 7.915850639343262, "##khan": 10.250399589538574, "##rdes": 10.167530059814453, "bloomington": 9.216788291931152, "##write": 8.572929382324219, "alton": 9.63111400604248, "barbecue": 7.891358375549316, "##bians": 8.221199035644531, "justine": 10.745351791381836, "##hri": 7.810908317565918, "##ndt": 9.989882469177246, "delightful": 8.533076286315918, "smartphone": 6.811675071716309, "newtown": 9.732558250427246, "photon": 8.215327262878418, "retrieval": 8.66755199432373, "peugeot": 10.455702781677246, "hissing": 9.856197357177734, "##monium": 8.274764060974121, "##orough": 11.500764846801758, "flavors": 7.021082401275635, "lighted": 9.229388236999512, "relaunched": 11.195089340209961, "tainted": 9.854042053222656, "##games": 9.317291259765625, "##lysis": 7.681028842926025, "anarchy": 9.605602264404297, "microscopic": 7.348450183868408, "hopping": 9.182108879089355, "adept": 9.534317016601562, "evade": 9.617426872253418, "evie": 9.81188678741455, "##beau": 9.787420272827148, "inhibit": 7.083541393280029, "sinn": 9.204343795776367, "adjustable": 7.668607711791992, "hurst": 9.629392623901367, "intuition": 9.059146881103516, "wilton": 10.176405906677246, "cisco": 7.879931449890137, "44th": 9.515726089477539, "lawful": 8.283230781555176, "lowlands": 9.140122413635254, "stockings": 9.289977073669434, "thierry": 11.220090866088867, "##dalen": 10.981040954589844, "##hila": 9.021928787231445, "##nai": 9.20209789276123, "fates": 10.244019508361816, "prank": 9.242149353027344, "tb": 7.257310390472412, "maison": 10.459639549255371, "lobbied": 10.77735424041748, "provocative": 9.638028144836426, "1724": 10.572258949279785, "4a": 8.941850662231445, "utopia": 9.337635040283203, "##qual": 7.662815570831299, "carbonate": 7.275768280029297, "gujarati": 10.19439697265625, "purcell": 10.508133888244629, "##rford": 10.10197925567627, "curtiss": 11.435877799987793, "##mei": 9.454695701599121, "overgrown": 9.789436340332031, "arenas": 9.448936462402344, "mediation": 8.881454467773438, "swallows": 9.592257499694824, "##rnik": 11.753677368164062, "respectful": 8.611946105957031, "turnbull": 11.374944686889648, "##hedron": 9.353169441223145, "##hope": 10.025017738342285, "alyssa": 10.129953384399414, "ozone": 7.8940839767456055, "##\u02bbi": 10.135643005371094, "ami": 7.28117561340332, "gestapo": 11.108421325683594, "johansson": 10.045663833618164, "snooker": 10.67443561553955, "canteen": 10.750615119934082, "cuff": 7.823262691497803, "declines": 8.384398460388184, "empathy": 8.748279571533203, "stigma": 8.42688274383545, "##ags": 9.880215644836426, "##iner": 7.655622482299805, "##raine": 7.164095401763916, "taxpayers": 7.2980756759643555, "gui": 7.553719997406006, "volga": 10.107511520385742, "##wright": 10.197427749633789, "##copic": 8.054954528808594, "lifespan": 7.256028175354004, "overcame": 10.161656379699707, "tattooed": 9.818097114562988, "enactment": 9.067935943603516, "giggles": 11.064133644104004, "##ador": 8.986950874328613, "##camp": 8.284126281738281, "barrington": 10.3407621383667, "bribe": 9.895806312561035, "obligatory": 9.83908462524414, "orbiting": 8.77353286743164, "peng": 10.6082181930542, "##enas": 10.10197925567627, "elusive": 8.890448570251465, "sucker": 8.968132972717285, "##vating": 8.84312629699707, "cong": 6.9678053855896, "hardship": 8.349367141723633, "empowered": 9.246830940246582, "anticipating": 9.805713653564453, "estrada": 11.078679084777832, "cryptic": 9.975194931030273, "greasy": 8.455179214477539, "detainees": 10.369182586669922, "planck": 9.83908462524414, "sudbury": 10.699189186096191, "plaid": 10.080150604248047, "dod": 7.588407039642334, "marriott": 8.301294326782227, "kayla": 9.934713363647461, "##ears": 9.115134239196777, "##vb": 9.678742408752441, "##zd": 9.78139591217041, "mortally": 11.078679084777832, "##hein": 9.682361602783203, "cognition": 8.713274002075195, "radha": 11.211687088012695, "319": 8.695544242858887, "liechtenstein": 9.816022872924805, "meade": 9.564477920532227, "richly": 9.682361602783203, "argyle": 10.77194881439209, "harpsichord": 10.714341163635254, "liberalism": 9.744063377380371, "trumpets": 10.33030891418457, "lauded": 10.31653881072998, "tyrant": 9.548490524291992, "salsa": 8.309530258178711, "tiled": 9.751808166503906, "lear": 9.29858684539795, "promoters": 9.648490905761719, "reused": 9.345372200012207, "slicing": 8.839217185974121, "trident": 9.920807838439941, "##chuk": 10.941947937011719, "##gami": 9.93005657196045, "##lka": 9.61234188079834, "cantor": 10.467560768127441, "checkpoint": 8.93925952911377, "##points": 8.358010292053223, "gaul": 9.23516845703125, "leger": 11.007978439331055, "mammalian": 8.579527854919434, "##tov": 9.546905517578125, "##aar": 9.889095306396484, "##schaft": 10.77735424041748, "doha": 9.759613037109375, "frenchman": 9.918508529663086, "nirvana": 9.657293319702148, "##vino": 10.309724807739258, "delgado": 10.948357582092285, "headlining": 10.443984031677246, "##eron": 8.618183135986328, "##iography": 8.760465621948242, "jug": 7.943184852600098, "tko": 11.299078941345215, "1649": 10.520634651184082, "naga": 9.423420906066895, "intersections": 9.732558250427246, "##jia": 10.282922744750977, "benfica": 12.838003158569336, "nawab": 12.177291870117188, "##suka": 11.28998851776123, "ashford": 10.132794380187988, "gulp": 9.836966514587402, "##deck": 10.282922744750977, "##vill": 8.712586402893066, "##rug": 9.126508712768555, "brentford": 12.838003158569336, "frazier": 10.0720853805542, "pleasures": 9.329957008361816, "dunne": 10.554753303527832, "potsdam": 10.35487174987793, "shenzhen": 10.152910232543945, "dentistry": 8.117417335510254, "##tec": 7.384593486785889, "flanagan": 10.612804412841797, "##dorff": 10.89819049835205, "##hear": 9.357090950012207, "chorale": 11.753677368164062, "dinah": 10.664703369140625, "prem": 7.5504889488220215, "quezon": 10.935578346252441, "##rogated": 10.99441909790039, "relinquished": 10.52905559539795, "sutra": 10.499886512756348, "terri": 7.78964900970459, "##pani": 8.81075382232666, "flaps": 9.13381576538086, "##rissa": 10.524836540222168, "poly": 5.384453773498535, "##rnet": 8.747567176818848, "homme": 10.850419998168945, "aback": 11.489653587341309, "##eki": 9.083754539489746, "linger": 8.504195213317871, "womb": 7.8036789894104, "##kson": 10.009808540344238, "##lewood": 9.390382766723633, "doorstep": 9.523430824279785, "orthodoxy": 10.626693725585938, "threaded": 8.682784080505371, "westfield": 9.856197357177734, "##rval": 8.843910217285156, "dioceses": 11.684205055236816, "fridays": 9.029451370239258, "subsided": 10.158732414245605, "##gata": 10.541821479797363, "loyalists": 10.39104175567627, "##biotic": 6.482967376708984, "##ettes": 9.655527114868164, "letterman": 10.014852523803711, "lunatic": 10.537548065185547, "prelate": 11.925976753234863, "tenderly": 11.925976753234863, "invariably": 9.165750503540039, "souza": 10.719443321228027, "thug": 10.027575492858887, "winslow": 10.135643005371094, "##otide": 6.976853370666504, "furlongs": 10.719443321228027, "gogh": 9.34020709991455, "jeopardy": 8.97347354888916, "##runa": 10.182367324829102, "pegasus": 9.920807838439941, "##umble": 8.612567901611328, "humiliated": 10.67443561553955, "standalone": 8.495857238769531, "tagged": 8.000877380371094, "##roller": 9.322338104248047, "freshmen": 8.802445411682129, "klan": 9.497474670410156, "##bright": 9.948814392089844, "attaining": 9.344078063964844, "initiating": 8.713274002075195, "transatlantic": 9.828536033630371, "logged": 7.981494903564453, "viz": 8.807724952697754, "##uance": 8.048916816711426, "1723": 10.369182586669922, "combatants": 10.409629821777344, "intervening": 9.422021865844727, "stephane": 11.925976753234863, "chieftain": 10.27633285522461, "despised": 10.57668399810791, "grazed": 10.640778541564941, "317": 8.587383270263672, "cdc": 7.283972263336182, "galveston": 8.889628410339355, "godzilla": 10.319963455200195, "macro": 6.547735214233398, "simulate": 8.744013786315918, "##planes": 10.704215049743652, "parades": 9.224787712097168, "##esses": 9.916215896606445, "960": 8.103486061096191, "##ductive": 8.876582145690918, "##unes": 8.714651107788086, "equator": 7.28101110458374, "overdose": 7.5231218338012695, "##cans": 8.429469108581543, "##hosh": 10.014852523803711, "##lifting": 9.084752082824707, "joshi": 11.384845733642578, "epstein": 8.96902084350586, "sonora": 8.991483688354492, "treacherous": 10.045663833618164, "aquatics": 10.827364921569824, "manchu": 9.44035816192627, "responsive": 7.8545427322387695, "##sation": 9.459036827087402, "supervisory": 8.96902084350586, "##christ": 10.218900680541992, "##llins": 9.475119590759277, "##ibar": 9.461941719055176, "##balance": 7.049214839935303, "##uso": 8.833769798278809, "kimball": 10.471545219421387, "karlsruhe": 11.909027099609375, "mab": 9.261007308959961, "##emy": 9.925421714782715, "ignores": 9.491464614868164, "phonetic": 8.13231372833252, "reuters": 8.103486061096191, "spaghetti": 8.23049545288086, "820": 8.251517295837402, "almighty": 9.934713363647461, "danzig": 11.195089340209961, "rumbling": 9.967930793762207, "tombstone": 9.44178295135498, "designations": 8.800942420959473, "lured": 10.203516006469727, "outset": 9.36497974395752, "##felt": 9.217926979064941, "supermarkets": 8.426366806030273, "##wt": 8.580129623413086, "grupo": 10.626693725585938, "kei": 8.699607849121094, "kraft": 8.862905502319336, "susanna": 10.266529083251953, "##blood": 9.36497974395752, "comprehension": 8.526776313781738, "genealogy": 7.827509880065918, "##aghan": 10.981040954589844, "##verted": 9.399906158447266, "redding": 9.744063377380371, "##ythe": 7.918022155761719, "1722": 10.362001419067383, "bowing": 10.22512149810791, "##pore": 9.019123077392578, "##roi": 8.28951644897461, "lest": 9.620831489562988, "sharpened": 10.179381370544434, "fulbright": 11.245733261108398, "valkyrie": 10.967839241027832, "sikhs": 10.05351734161377, "##unds": 7.722560882568359, "swans": 9.082758903503418, "bouquet": 8.741179466247559, "merritt": 9.745994567871094, "##tage": 8.879015922546387, "##venting": 9.09477710723877, "commuted": 11.035661697387695, "redhead": 10.138500213623047, "clerks": 7.962806224822998, "leasing": 8.16517448425293, "cesare": 9.302299499511719, "dea": 7.888036727905273, "hazy": 9.554855346679688, "##vances": 9.057204246520996, "fledged": 9.427628517150879, "greenfield": 9.607282638549805, "servicemen": 10.351325035095215, "##gical": 8.880640983581543, "armando": 10.941947937011719, "blackout": 9.27297592163086, "dt": 7.550058841705322, "sagged": 12.545016288757324, "downloadable": 8.750419616699219, "intra": 6.033742427825928, "potion": 9.24917984008789, "pods": 8.100126266479492, "##4th": 10.306334495544434, "##mism": 9.382290840148926, "xp": 6.737255096435547, "attendants": 9.031340599060059, "gambia": 10.155817031860352, "stale": 8.686125755310059, "##ntine": 9.787420272827148, "plump": 8.96990966796875, "asteroids": 9.146468162536621, "rediscovered": 10.313125610351562, "buds": 7.533006191253662, "flea": 7.3685078620910645, "hive": 7.261168003082275, "##neas": 9.607282638549805, "1737": 10.636061668395996, "classifications": 8.164379119873047, "debuts": 9.303540229797363, "##eles": 7.816224575042725, "olympus": 9.169000625610352, "scala": 8.109109878540039, "##eurs": 10.87402057647705, "##gno": 5.95469331741333, "##mute": 7.834628105163574, "hummed": 12.645099639892578, "sigismund": 12.245499610900879, "visuals": 9.615729331970215, "wiggled": 12.645099639892578, "await": 8.654492378234863, "pilasters": 12.22224235534668, "clench": 10.512283325195312, "sulfate": 7.511057376861572, "##ances": 8.769886016845703, "bellevue": 9.150720596313477, "enigma": 9.095785140991211, "trainee": 8.672823905944824, "snort": 9.508081436157227, "##sw": 6.985006332397461, "clouded": 10.14423942565918, "denim": 9.09982681274414, "##rank": 9.413671493530273, "##rder": 9.46924114227295, "churning": 9.70993709564209, "hartman": 9.74213695526123, "lodges": 9.56609058380127, "riches": 9.167916297912598, "sima": 10.306334495544434, "##missible": 8.406427383422852, "accountable": 8.553390502929688, "socrates": 9.329957008361816, "regulates": 7.435805320739746, "mueller": 9.426223754882812, "##cr": 5.599888801574707, "1702": 10.319963455200195, "avoids": 9.007975578308105, "solids": 7.437148571014404, "himalayas": 8.742595672607422, "nutrient": 6.680979251861572, "pup": 6.751276969909668, "##jevic": 12.513763427734375, "squat": 8.007309913635254, "fades": 9.302299499511719, "nec": 7.084080696105957, "##lates": 8.214909553527832, "##pina": 8.699607849121094, "##rona": 9.225935935974121, "##\u03bf\u03c5": 10.182367324829102, "privateer": 11.001175880432129, "tequila": 9.097804069519043, "##gative": 9.220208168029785, "##mpton": 10.69419002532959, "apt": 7.641153335571289, "hornet": 9.965520858764648, "immortals": 11.18689250946045, "##dou": 8.085330963134766, "asturias": 11.228565216064453, "cleansing": 7.952143669128418, "dario": 11.404947280883789, "##rries": 10.266529083251953, "##anta": 8.743304252624512, "etymology": 7.615579605102539, "servicing": 8.116659164428711, "zhejiang": 10.631366729736328, "##venor": 11.345816612243652, "##nx": 7.81007194519043, "horned": 9.161433219909668, "erasmus": 10.745351791381836, "rayon": 9.058175086975098, "relocating": 9.447501182556152, "\u00a310": 8.871733665466309, "##bags": 8.70436954498291, "escalated": 10.040462493896484, "promenade": 9.9093656539917, "stubble": 10.740116119384766, "2010s": 10.256819725036621, "artisans": 9.58072566986084, "axial": 8.409468650817871, "liquids": 6.917452335357666, "mora": 8.426366806030273, "sho": 7.442540168762207, "yoo": 9.751808166503906, "##tsky": 10.228246688842773, "bundles": 8.171957969665527, "oldies": 10.669557571411133, "##nally": 9.980066299438477, "notification": 7.102598667144775, "bastion": 10.358429908752441, "##ths": 8.334182739257812, "sparkle": 8.958415985107422, "##lved": 9.925421714782715, "1728": 10.176405906677246, "leash": 9.09477710723877, "pathogen": 6.861166477203369, "highs": 7.476311683654785, "##hmi": 7.561300754547119, "immature": 8.104233741760254, "880": 8.156463623046875, "gonzaga": 10.689214706420898, "ignatius": 10.740116119384766, "mansions": 9.984962463378906, "monterrey": 10.319963455200195, "sweets": 8.492541313171387, "bryson": 10.483592987060547, "##loe": 8.437270164489746, "polled": 9.799578666687012, "regatta": 10.77735424041748, "brightest": 8.380444526672363, "pei": 8.962821006774902, "rosy": 9.62767505645752, "squid": 8.276985168457031, "hatfield": 10.141366004943848, "payroll": 7.163656711578369, "addict": 7.565003871917725, "meath": 10.734908103942871, "cornerback": 10.520634651184082, "heaviest": 8.241166114807129, "lodging": 7.687174320220947, "##mage": 9.248003959655762, "capcom": 10.709264755249023, "rippled": 11.47866439819336, "##sily": 11.049796104431152, "barnet": 11.457042694091797, "mayhem": 10.127120018005371, "ymca": 9.20322036743164, "snuggled": 12.015321731567383, "rousseau": 10.002289772033691, "##cute": 9.084752082824707, "blanchard": 10.045663833618164, "284": 8.5475435256958, "fragmented": 9.485489845275879, "leighton": 10.669557571411133, "chromosomes": 6.658163070678711, "risking": 10.14423942565918, "##md": 6.9081315994262695, "##strel": 9.217926979064941, "##utter": 8.775727272033691, "corinne": 11.028668403625488, "coyotes": 8.97347354888916, "cynical": 9.958327293395996, "hiroshi": 11.500764846801758, "yeomanry": 13.392313957214355, "##ractive": 8.572331428527832, "ebook": 8.4028902053833, "grading": 8.34174633026123, "mandela": 9.317291259765625, "plume": 8.802445411682129, "agustin": 11.394845962524414, "magdalene": 10.622042655944824, "##rkin": 9.31981086730957, "bea": 7.487760066986084, "femme": 10.471545219421387, "trafford": 11.115997314453125, "##coll": 8.498628616333008, "##lun": 8.387373924255371, "##tance": 8.444079399108887, "52nd": 10.26328182220459, "fourier": 10.260046005249023, "upton": 9.873607635498047, "##mental": 8.78307819366455, "camilla": 9.970346450805664, "gust": 8.030326843261719, "iihf": 12.269309997558594, "islamabad": 10.333781242370605, "longevity": 7.998181343078613, "##kala": 10.541821479797363, "feldman": 10.127120018005371, "netting": 9.607282638549805, "##rization": 9.093770027160645, "endeavour": 9.55325984954834, "foraging": 9.448936462402344, "mfa": 10.372793197631836, "orr": 8.849413871765137, "##open": 7.996164321899414, "greyish": 10.141366004943848, "contradiction": 9.285089492797852, "graz": 8.814553260803223, "##ruff": 9.691469192504883, "handicapped": 9.597241401672363, "marlene": 10.424753189086914, "tweed": 9.927736282348633, "oaxaca": 10.061432838439941, "spp": 8.623200416564941, "campos": 11.178762435913086, "miocene": 10.402153015136719, "pri": 6.572823524475098, "configured": 7.9220685958862305, "cooks": 7.788283824920654, "pluto": 7.827509880065918, "cozy": 8.677459716796875, "pornographic": 10.27633285522461, "##entes": 10.282922744750977, "70th": 9.807766914367676, "fairness": 8.850991249084473, "glided": 12.344346046447754, "jonny": 10.590076446533203, "lynne": 10.009808540344238, "rounding": 8.15410041809082, "sired": 11.001175880432129, "##emon": 8.314597129821777, "##nist": 7.422470569610596, "remade": 10.626693725585938, "uncover": 8.282783508300781, "##mack": 9.680550575256348, "complied": 10.043060302734375, "lei": 7.827793598175049, "newsweek": 10.004790306091309, "##jured": 10.319963455200195, "##parts": 9.013533592224121, "##enting": 8.661001205444336, "##pg": 8.705734252929688, "293": 8.65709114074707, "finer": 8.572929382324219, "guerrillas": 11.299078941345215, "athenian": 9.311017036437988, "deng": 9.029451370239258, "disused": 11.394845962524414, "stepmother": 10.2313814163208, "accuse": 9.22708511352539, "gingerly": 12.053421974182129, "seduction": 10.491706848144531, "521": 8.947052001953125, "confronting": 9.977627754211426, "##walker": 9.123394012451172, "##going": 9.170086860656738, "gora": 11.108421325683594, "nostalgia": 9.539019584655762, "sabres": 11.078679084777832, "virginity": 10.138500213623047, "wrenched": 12.483458518981934, "##minated": 9.02099323272705, "syndication": 9.620831489562988, "wielding": 10.15001106262207, "eyre": 10.292889595031738, "##56": 7.705841064453125, "##gnon": 9.427628517150879, "##igny": 11.657712936401367, "behaved": 9.925421714782715, "taxpayer": 7.432359218597412, "sweeps": 9.07383918762207, "##growth": 7.971287727355957, "childless": 10.948357582092285, "gallant": 10.483592987060547, "##ywood": 8.090853691101074, "amplified": 9.346667289733887, "geraldine": 10.567853927612305, "scrape": 7.740604877471924, "##ffi": 7.291746139526367, "babylonian": 9.146468162536621, "fresco": 9.57419490814209, "##rdan": 9.110005378723145, "##kney": 10.358429908752441, "##position": 8.43518352508545, "1718": 10.387365341186523, "restricting": 8.896215438842773, "tack": 7.952465057373047, "fukuoka": 11.345816612243652, "osborn": 10.49578857421875, "selector": 8.984240531921387, "partnering": 9.328682899475098, "##dlow": 10.161656379699707, "318": 8.512603759765625, "gnu": 9.255075454711914, "kia": 8.4028902053833, "tak": 8.32620906829834, "whitley": 10.499886512756348, "gables": 9.726855278015137, "##54": 7.761633396148682, "##mania": 9.625959396362305, "mri": 7.1203460693359375, "softness": 9.431854248046875, "immersion": 8.99695110321045, "##bots": 10.132794380187988, "##evsky": 11.13907527923584, "1713": 10.724571228027344, "chilling": 9.027565002441406, "insignificant": 9.190943717956543, "pcs": 7.72819709777832, "##uis": 7.547053337097168, "elites": 10.032711029052734, "lina": 9.556452751159668, "purported": 9.142232894897461, "supplemental": 7.504462718963623, "teaming": 9.836966514587402, "##americana": 12.513763427734375, "##dding": 9.695136070251465, "##inton": 10.590076446533203, "proficient": 8.999695777893066, "rouen": 11.014827728271484, "##nage": 9.374263763427734, "##rret": 8.69689655303955, "niccolo": 10.821682929992676, "selects": 8.746855735778809, "##bread": 8.730623245239258, "fluffy": 8.32995319366455, "1621": 10.27633285522461, "gruff": 10.724571228027344, "knotted": 10.164588928222656, "mukherjee": 11.725306510925293, "polgara": 1.0, "thrash": 9.600577354431152, "nicholls": 11.384845733642578, "secluded": 9.161433219909668, "smoothing": 9.413671493530273, "thru": 7.341096878051758, "corsica": 9.655527114868164, "loaf": 8.206999778747559, "whitaker": 10.455702781677246, "inquiries": 8.131929397583008, "##rrier": 10.182367324829102, "##kam": 9.020057678222656, "indochina": 9.719300270080566, "289": 8.653196334838867, "marlins": 10.019922256469727, "myles": 10.689214706420898, "peking": 10.306334495544434, "##tea": 7.378598690032959, "extracts": 8.042564392089844, "pastry": 8.242024421691895, "superhuman": 9.765506744384766, "connacht": 11.115997314453125, "vogel": 10.479560852050781, "##ditional": 8.521082878112793, "##het": 6.746645450592041, "##udged": 11.374944686889648, "##lash": 8.43779182434082, "gloss": 6.954206943511963, "quarries": 10.256819725036621, "refit": 10.709264755249023, "teaser": 9.328682899475098, "##alic": 8.283230781555176, "##gaon": 11.87596607208252, "20s": 8.349844932556152, "materialized": 11.086031913757324, "sling": 8.491438865661621, "camped": 10.337265014648438, "pickering": 10.886032104492188, "tung": 8.63776683807373, "tracker": 8.231345176696777, "pursuant": 7.829497814178467, "##cide": 8.415580749511719, "cranes": 9.156063079833984, "soc": 7.961507797241211, "##cini": 9.543744087219238, "##typical": 9.090754508972168, "##viere": 11.211687088012695, "anhalt": 12.053421974182129, "overboard": 9.71742057800293, "workout": 6.611424446105957, "chores": 9.231696128845215, "fares": 8.03590202331543, "orphaned": 9.558052062988281, "stains": 7.292576789855957, "##logie": 11.086031913757324, "fenton": 10.282922744750977, "surpassing": 9.379608154296875, "joyah": 1.0, "triggers": 7.392091751098633, "##itte": 8.254121780395508, "grandmaster": 10.669557571411133, "##lass": 7.760305881500244, "##lists": 8.4546480178833, "clapping": 10.60365104675293, "fraudulent": 8.49807357788086, "ledger": 8.237738609313965, "nagasaki": 9.238653182983398, "##cor": 6.620293617248535, "##nosis": 7.668365955352783, "##tsa": 9.251533508300781, "eucalyptus": 8.74970531463623, "tun": 7.910595417022705, "##icio": 9.79145622253418, "##rney": 10.428569793701172, "##tara": 9.570945739746094, "dax": 10.33030891418457, "heroism": 10.05614948272705, "ina": 6.976490020751953, "wrexham": 11.828338623046875, "onboard": 8.5475435256958, "unsigned": 9.689640998840332, "##dates": 9.007051467895508, "moshe": 10.821682929992676, "galley": 10.394731521606445, "winnie": 9.70993709564209, "droplets": 8.184853553771973, "exiles": 10.64551830291748, "praises": 10.11586856842041, "watered": 9.09982681274414, "noodles": 7.943184852600098, "##aia": 10.012328147888184, "fein": 9.301060676574707, "adi": 7.27380895614624, "leland": 10.030139923095703, "multicultural": 9.086749076843262, "stink": 8.656440734863281, "bingo": 9.422021865844727, "comets": 9.252713203430176, "erskine": 11.546487808227539, "modernized": 10.319963455200195, "canned": 7.35197114944458, "constraint": 9.271772384643555, "domestically": 9.350563049316406, "chemotherapy": 7.259880542755127, "featherweight": 10.704215049743652, "stifled": 11.558252334594727, "##mum": 9.159281730651855, "darkly": 10.333781242370605, "irresistible": 9.417838096618652, "refreshing": 8.004257202148438, "hasty": 10.376416206359863, "isolate": 8.085330963134766, "##oys": 8.979740142822266, "kitchener": 10.804828643798828, "planners": 8.834546089172363, "##wehr": 11.978620529174805, "cages": 9.07383918762207, "yarn": 7.955685138702393, "implant": 6.654995918273926, "toulon": 11.81295394897461, "elects": 9.44178295135498, "childbirth": 8.136556625366211, "yue": 10.326848030090332, "##lind": 9.307271957397461, "##lone": 8.079472541809082, "cn": 6.571529865264893, "rightful": 9.293657302856445, "sportsman": 9.587299346923828, "junctions": 8.987855911254883, "remodeled": 9.700660705566406, "specifies": 7.751326560974121, "##rgh": 8.881454467773438, "291": 8.678123474121094, "##oons": 7.311194896697998, "complimented": 10.886032104492188, "##urgent": 10.1853609085083, "lister": 8.69015121459961, "ot": 6.0260796546936035, "##logic": 7.2995805740356445, "bequeathed": 11.093440055847168, "cheekbones": 10.447875022888184, "fontana": 10.17343807220459, "gabby": 10.67443561553955, "##dial": 8.0606689453125, "amadeus": 10.533292770385742, "corrugated": 9.316032409667969, "maverick": 9.50503921508789, "resented": 10.520634651184082, "triangles": 8.276985168457031, "##hered": 10.289556503295898, "##usly": 9.820176124572754, "nazareth": 10.170479774475098, "tyrol": 10.804828643798828, "1675": 10.563467979431152, "assent": 9.66439151763916, "poorer": 9.143289566040039, "sectional": 8.42070198059082, "aegean": 9.053330421447754, "##cous": 7.021462440490723, "296": 8.587989807128906, "nylon": 7.9931464195251465, "ghanaian": 10.59458065032959, "##egorical": 8.880640983581543, "##weig": 8.541152000427246, "cushions": 8.600203514099121, "forbid": 8.924704551696777, "fusiliers": 12.293702125549316, "obstruction": 7.188654899597168, "somerville": 10.15001106262207, "##scia": 7.9374680519104, "dime": 7.641624450683594, "earrings": 9.002448081970215, "elliptical": 8.503637313842773, "leyte": 10.95481014251709, "oder": 9.724961280822754, "polymers": 7.948614597320557, "timmy": 10.799272537231445, "atm": 7.376247406005859, "midtown": 9.020057678222656, "piloted": 10.05614948272705, "settles": 9.103885650634766, "continual": 8.881454467773438, "externally": 8.721564292907715, "mayfield": 10.323400497436523, "##uh": 8.47449779510498, "enrichment": 9.145407676696777, "henson": 9.713671684265137, "keane": 10.816033363342285, "persians": 9.558052062988281, "1733": 10.402153015136719, "benji": 10.941947937011719, "braden": 9.648490905761719, "pep": 7.301423072814941, "324": 8.540573120117188, "##efe": 9.049470901489258, "contenders": 9.57419490814209, "pepsi": 8.143148422241211, "valet": 9.177720069885254, "##isches": 12.199514389038086, "298": 8.633310317993164, "##asse": 8.32620906829834, "##earing": 9.66974925994873, "goofy": 9.64150333404541, "stroll": 8.349844932556152, "##amen": 8.123501777648926, "authoritarian": 9.44035816192627, "occurrences": 7.748176574707031, "adversary": 9.653762817382812, "ahmedabad": 10.581128120422363, "tangent": 8.700286865234375, "toppled": 10.78278923034668, "dorchester": 9.907093048095703, "1672": 11.014827728271484, "modernism": 10.002289772033691, "marxism": 10.05089282989502, "islamist": 10.810415267944336, "charlemagne": 9.809823989868164, "exponential": 8.38886547088623, "racks": 8.543472290039062, "unicode": 8.899524688720703, "brunette": 9.882428169250488, "mbc": 10.709264755249023, "pic": 6.6879448890686035, "skirmish": 10.099224090576172, "##bund": 9.809823989868164, "##lad": 7.899557590484619, "##powered": 9.967930793762207, "##yst": 6.626933574676514, "hoisted": 10.59458065032959, "messina": 10.398435592651367, "shatter": 9.427628517150879, "##ctum": 10.027575492858887, "jedi": 8.711212158203125, "vantage": 9.25744342803955, "##music": 9.85189151763916, "##neil": 9.923111915588379, "clemens": 10.161656379699707, "mahmoud": 11.978620529174805, "corrupted": 9.064020156860352, "authentication": 8.038352012634277, "lowry": 9.546905517578125, "nils": 10.689214706420898, "##washed": 9.69881534576416, "omnibus": 9.813952445983887, "wounding": 10.2536039352417, "jillian": 10.31653881072998, "##itors": 8.924704551696777, "##opped": 11.195089340209961, "serialized": 10.309724807739258, "narcotics": 8.705734252929688, "handheld": 8.492541313171387, "##arm": 6.169288635253906, "##plicity": 10.037872314453125, "intersecting": 9.56609058380127, "stimulating": 7.47791051864624, "##onis": 9.007975578308105, "crate": 8.802445411682129, "fellowships": 9.820176124572754, "hemingway": 9.55325984954834, "casinos": 8.711212158203125, "climatic": 8.28099536895752, "fordham": 10.365585327148438, "copeland": 10.009808540344238, "drip": 7.542989253997803, "beatty": 10.179381370544434, "leaflets": 9.16683292388916, "robber": 9.401274681091309, "brothel": 10.21271800994873, "madeira": 9.655527114868164, "##hedral": 9.350563049316406, "sphinx": 9.880215644836426, "ultrasound": 6.905532360076904, "##vana": 9.391737937927246, "valor": 8.858122825622559, "forbade": 10.585592269897461, "leonid": 10.487641334533691, "villas": 9.206595420837402, "##aldo": 10.030139923095703, "duane": 9.508081436157227, "marquez": 10.766572952270508, "##cytes": 7.3329315185546875, "disadvantaged": 9.624246597290039, "forearms": 9.355781555175781, "kawasaki": 9.417838096618652, "reacts": 7.5951313972473145, "consular": 9.466315269470215, "lax": 7.457126140594482, "uncles": 9.975194931030273, "uphold": 8.800191879272461, "##hopper": 8.836100578308105, "concepcion": 11.021724700927734, "dorsey": 10.296234130859375, "lass": 8.51994800567627, "##izan": 11.753677368164062, "arching": 10.037872314453125, "passageway": 8.9111967086792, "1708": 10.799272537231445, "researches": 9.657293319702148, "tia": 8.368189811706543, "internationals": 11.909027099609375, "##graphs": 8.848625183105469, "##opers": 10.191375732421875, "distinguishes": 8.556325912475586, "javanese": 10.467560768127441, "divert": 7.764293670654297, "##uven": 9.0303955078125, "plotted": 9.093770027160645, "##listic": 8.168360710144043, "##rwin": 9.807766914367676, "##erik": 10.306334495544434, "##tify": 8.302661895751953, "affirmative": 8.81760311126709, "signifies": 8.18242359161377, "validation": 8.256733894348145, "##bson": 10.26978588104248, "kari": 9.653762817382812, "felicity": 9.977627754211426, "georgina": 10.892093658447266, "zulu": 9.531194686889648, "##eros": 8.477210998535156, "##rained": 8.6975736618042, "##rath": 9.051399230957031, "overcoming": 9.277803421020508, "##dot": 7.702580451965332, "argyll": 11.001175880432129, "##rbin": 8.96990966796875, "1734": 10.631366729736328, "chiba": 11.14688777923584, "ratification": 8.345072746276855, "windy": 8.525634765625, "earls": 10.87402057647705, "parapet": 10.714341163635254, "##marks": 8.155281066894531, "hunan": 10.479560852050781, "pristine": 8.65774154663086, "astrid": 10.402153015136719, "punta": 8.621315956115723, "##gart": 9.379608154296875, "brodie": 11.108421325683594, "##kota": 9.652002334594727, "##oder": 7.7885565757751465, "malaga": 9.394453048706055, "minerva": 10.471545219421387, "rouse": 9.528081893920898, "##phonic": 10.132794380187988, "bellowed": 13.132802963256836, "pagoda": 10.862151145935059, "portals": 9.75570297241211, "reclamation": 9.920807838439941, "##gur": 6.150125503540039, "##odies": 8.819896697998047, "##\u2044\u2084": 14.742240905761719, "parentheses": 8.444605827331543, "quoting": 9.125470161437988, "allergic": 6.231842041015625, "palette": 8.445131301879883, "showcases": 9.219067573547363, "benefactor": 10.26328182220459, "heartland": 8.97347354888916, "nonlinear": 9.878008842468262, "##tness": 8.807724952697754, "bladed": 10.077454566955566, "cheerfully": 11.18689250946045, "scans": 7.728967666625977, "##ety": 8.311369895935059, "##hone": 8.676133155822754, "1666": 10.182367324829102, "girlfriends": 9.822259902954102, "pedersen": 11.308253288269043, "hiram": 9.79145622253418, "sous": 9.569324493408203, "##liche": 10.755906105041504, "##nator": 7.669576644897461, "1683": 10.491706848144531, "##nery": 10.475544929504395, "##orio": 10.761224746704102, "##umen": 8.309530258178711, "bobo": 10.516449928283691, "primaries": 9.271772384643555, "smiley": 9.478071212768555, "##cb": 8.883899688720703, "unearthed": 9.83908462524414, "uniformly": 8.878204345703125, "fis": 7.698831558227539, "metadata": 8.938397407531738, "1635": 10.161656379699707, "ind": 5.7523512840271, "##oted": 9.783400535583496, "recoil": 9.380949020385742, "##titles": 9.013533592224121, "##tura": 8.844694137573242, "##\u03b9\u03b1": 8.843910217285156, "406": 8.662307739257812, "hilbert": 11.384845733642578, "jamestown": 8.682784080505371, "mcmillan": 10.724571228027344, "tulane": 10.26328182220459, "seychelles": 9.871415138244629, "##frid": 10.844606399536133, "antics": 9.920807838439941, "coli": 6.842345237731934, "fated": 10.176405906677246, "stucco": 8.95403003692627, "##grants": 9.932381629943848, "1654": 10.816033363342285, "bulky": 8.769886016845703, "accolades": 9.744063377380371, "arrays": 8.666894912719727, "caledonian": 11.435877799987793, "carnage": 10.550423622131348, "optimism": 9.190943717956543, "puebla": 9.997308731079102, "##tative": 7.9355692863464355, "##cave": 8.676133155822754, "enforcing": 8.66755199432373, "rotherham": 11.925976753234863, "seo": 8.870927810668945, "dunlop": 10.533292770385742, "aeronautics": 9.657293319702148, "chimed": 11.619246482849121, "incline": 8.425849914550781, "zoning": 8.279657363891602, "archduke": 9.783400535583496, "hellenistic": 9.775407791137695, "##oses": 8.098636627197266, "##sions": 9.434680938720703, "candi": 7.074815273284912, "thong": 10.091005325317383, "##ople": 7.863326072692871, "magnate": 9.634565353393555, "rustic": 8.562224388122559, "##rsk": 9.953558921813965, "projective": 10.922959327697754, "slant": 8.906177520751953, "##offs": 9.0181884765625, "danes": 9.402644157409668, "hollis": 9.76747989654541, "vocalists": 10.191375732421875, "##ammed": 9.744063377380371, "congenital": 7.299915313720703, "contend": 8.68411922454834, "gesellschaft": 11.582205772399902, "##ocating": 9.301060676574707, "##pressive": 7.914921283721924, "douglass": 9.509605407714844, "quieter": 9.394453048706055, "##cm": 7.085700988769531, "##kshi": 10.821682929992676, "howled": 12.425471305847168, "salim": 11.457042694091797, "spontaneously": 8.475582122802734, "townsville": 11.28998851776123, "buena": 9.262197494506836, "southport": 10.459639549255371, "##bold": 9.980066299438477, "kato": 10.222005844116211, "1638": 10.093737602233887, "faerie": 11.108421325683594, "stiffly": 11.446404457092285, "##vus": 9.068917274475098, "##rled": 11.272050857543945, "297": 8.605131149291992, "flawless": 8.97169017791748, "realising": 10.880008697509766, "taboo": 9.466315269470215, "##7th": 10.209641456604004, "bytes": 8.014809608459473, "straightening": 9.293657302856445, "356": 8.655141830444336, "jena": 10.916709899902344, "##hid": 7.992476940155029, "##rmin": 7.1276469230651855, "cartwright": 9.946450233459473, "berber": 9.287530899047852, "bertram": 10.862151145935059, "soloists": 11.237112998962402, "411": 8.62508773803711, "noses": 9.111028671264648, "417": 8.745433807373047, "coping": 8.544633865356445, "fission": 8.309530258178711, "hardin": 8.062821388244629, "inca": 7.162197113037109, "##cen": 8.600203514099121, "1717": 10.546113967895508, "mobilized": 10.319963455200195, "vhf": 9.875805854797363, "##raf": 7.803956508636475, "biscuits": 8.78307819366455, "curate": 10.844606399536133, "##85": 7.507754325866699, "##anial": 7.414554119110107, "331": 8.490887641906738, "gaunt": 9.787420272827148, "neighbourhoods": 10.892093658447266, "1540": 9.79145622253418, "##abas": 9.765506744384766, "blanca": 9.91392707824707, "bypassed": 10.319963455200195, "sockets": 8.734129905700684, "behold": 8.93324089050293, "coincidentally": 9.895806312561035, "##bane": 9.157135009765625, "nara": 9.503521919250488, "shave": 8.4028902053833, "splinter": 9.248003959655762, "terrific": 8.707785606384277, "##arion": 10.11586856842041, "##erian": 9.082758903503418, "commonplace": 8.990575790405273, "juris": 9.597241401672363, "redwood": 8.523356437683105, "waistband": 10.306334495544434, "boxed": 9.252713203430176, "caitlin": 10.141366004943848, "fingerprints": 8.920463562011719, "jennie": 10.2408447265625, "naturalized": 8.984240531921387, "##ired": 8.870122909545898, "balfour": 10.704215049743652, "craters": 9.56609058380127, "jody": 10.17343807220459, "bungalow": 9.783400535583496, "hugely": 8.886350631713867, "quilt": 8.133854866027832, "glitter": 9.139068603515625, "pigeons": 9.486980438232422, "undertaker": 10.17343807220459, "bulging": 8.372095108032227, "constrained": 9.61912727355957, "goo": 7.724606513977051, "##sil": 7.901083469390869, "##akh": 9.607282638549805, "assimilation": 9.268171310424805, "reworked": 10.755906105041504, "##person": 8.368677139282227, "persuasion": 9.275386810302734, "##pants": 9.181010246276855, "felicia": 10.203516006469727, "##cliff": 10.372793197631836, "##ulent": 8.315983772277832, "1732": 9.685995101928711, "explodes": 9.880215644836426, "##dun": 8.99695110321045, "##inium": 8.347455978393555, "##zic": 10.508133888244629, "lyman": 10.21271800994873, "vulture": 9.397175788879395, "hog": 7.6783366203308105, "overlook": 8.486491203308105, "begs": 10.244019508361816, "northwards": 10.838826179504395, "ow": 6.3853840827941895, "spoil": 7.310179710388184, "##urer": 7.463809013366699, "fatima": 10.326848030090332, "favorably": 9.724961280822754, "accumulate": 7.38787841796875, "sargent": 10.282922744750977, "sorority": 9.753753662109375, "corresponded": 10.87402057647705, "dispersal": 9.556452751159668, "kochi": 11.131322860717773, "toned": 9.026623725891113, "##imi": 6.458494186401367, "##lita": 8.3613920211792, "internacional": 11.631905555725098, "newfound": 10.064085960388184, "##agger": 8.490337371826172, "##lynn": 9.695136070251465, "##rigue": 9.706216812133789, "booths": 9.450372695922852, "peanuts": 7.806731700897217, "##eborg": 11.237112998962402, "medicare": 5.986008167266846, "muriel": 10.89819049835205, "nur": 7.974568843841553, "##uram": 9.989882469177246, "crates": 9.687816619873047, "millennia": 8.309070587158203, "pajamas": 10.266529083251953, "worsened": 9.497474670410156, "##breakers": 10.709264755249023, "jimi": 9.405389785766602, "vanuatu": 10.203516006469727, "yawned": 12.370662689208984, "##udeau": 10.250399589538574, "carousel": 9.470707893371582, "##hony": 9.387678146362305, "hurdle": 9.659063339233398, "##ccus": 7.252190113067627, "##mounted": 10.793747901916504, "##pod": 8.221199035644531, "rv": 7.322260856628418, "##eche": 9.702508926391602, "airship": 9.992352485656738, "ambiguity": 9.24917984008789, "compulsion": 9.682361602783203, "recapture": 10.009808540344238, "##claiming": 10.21271800994873, "arthritis": 6.149860858917236, "##osomal": 7.925817966461182, "1667": 10.6082181930542, "asserting": 9.85189151763916, "ngc": 10.282922744750977, "sniffing": 10.048274993896484, "dade": 8.803197860717773, "discontent": 9.90030574798584, "glendale": 8.957536697387695, "ported": 9.920807838439941, "##amina": 8.072561264038086, "defamation": 9.424820899963379, "rammed": 11.178762435913086, "##scent": 8.25499153137207, "fling": 9.88686752319336, "livingstone": 10.740116119384766, "##fleet": 10.26328182220459, "875": 8.533650398254395, "##ppy": 9.567707061767578, "apocalyptic": 9.78139591217041, "comrade": 10.57668399810791, "lcd": 8.019954681396484, "##lowe": 8.736944198608398, "cessna": 10.080150604248047, "eine": 10.398435592651367, "persecuted": 10.279622077941895, "subsistence": 9.3479642868042, "demi": 8.186071395874023, "hoop": 8.39135456085205, "reliefs": 10.838826179504395, "710": 8.260226249694824, "coptic": 10.59458065032959, "progressing": 8.983339309692383, "stemmed": 9.484002113342285, "perpetrators": 10.299589157104492, "1665": 10.11586856842041, "priestess": 10.436246871948242, "##nio": 7.918333053588867, "dobson": 10.428569793701172, "ebony": 10.040462493896484, "rooster": 8.791970252990723, "itf": 10.929248809814453, "tortricidae": 13.980100631713867, "##bbon": 10.358429908752441, "##jian": 10.612804412841797, "cleanup": 8.347933769226074, "##jean": 10.981040954589844, "##\u00f8y": 11.725306510925293, "1721": 10.512283325195312, "eighties": 10.082853317260742, "taxonomic": 8.577723503112793, "holiness": 10.22512149810791, "##hearted": 9.488472938537598, "##spar": 7.566751003265381, "antilles": 9.31981086730957, "showcasing": 9.4446382522583, "stabilized": 8.964588165283203, "##nb": 8.354159355163574, "gia": 8.004257202148438, "mascara": 9.648490905761719, "michelangelo": 9.328682899475098, "dawned": 11.162697792053223, "##uria": 7.67467737197876, "##vinsky": 10.929248809814453, "extinguished": 10.228246688842773, "fitz": 9.680550575256348, "grotesque": 10.164588928222656, "\u00a3100": 8.983339309692383, "##fera": 8.592857360839844, "##loid": 7.247572422027588, "##mous": 7.664019584655762, "barges": 10.550423622131348, "neue": 10.467560768127441, "throbbed": 13.980100631713867, "cipher": 9.466315269470215, "johnnie": 10.2536039352417, "##a1": 9.23516845703125, "##mpt": 5.696691036224365, "outburst": 9.659063339233398, "##swick": 11.021724700927734, "spearheaded": 10.387365341186523, "administrations": 9.984962463378906, "c1": 7.761102199554443, "heartbreak": 9.158207893371582, "pixels": 8.110992431640625, "pleasantly": 9.472175598144531, "##enay": 11.115997314453125, "lombardy": 10.546113967895508, "plush": 9.031340599060059, "##nsed": 8.731324195861816, "bobbie": 10.617413520812988, "##hly": 9.740214347839355, "reapers": 11.500764846801758, "tremor": 7.71315336227417, "xiang": 10.89819049835205, "minogue": 11.570157051086426, "substantive": 8.95403003692627, "hitch": 8.26329231262207, "barak": 10.533292770385742, "##wyl": 11.384845733642578, "kwan": 10.279622077941895, "##encia": 10.413389205932617, "910": 8.376015663146973, "obscene": 9.82643985748291, "elegance": 8.679452896118164, "indus": 8.615059852600098, "surfer": 9.004286766052246, "bribery": 9.813952445983887, "conserve": 8.508670806884766, "##hyllum": 11.570157051086426, "##masters": 9.880215644836426, "horatio": 10.244019508361816, "##fat": 7.816505432128906, "apes": 8.78825569152832, "rebound": 8.664271354675293, "psychotic": 8.805459022521973, "##pour": 8.273877143859863, "iteration": 8.982438087463379, "##mium": 8.586775779724121, "##vani": 7.955362796783447, "botanic": 10.344270706176758, "horribly": 10.17343807220459, "antiques": 9.263389587402344, "dispose": 8.217001914978027, "paxton": 10.200467109680176, "##hli": 8.942715644836426, "##wg": 8.88553237915039, "timeless": 8.618183135986328, "1704": 10.387365341186523, "disregard": 8.561633110046387, "engraver": 10.916709899902344, "hounds": 9.849745750427246, "##bau": 9.104903221130371, "##version": 8.567562103271484, "looted": 11.021724700927734, "uno": 7.605757713317871, "facilitates": 8.420188903808594, "groans": 11.606746673583984, "masjid": 10.793747901916504, "rutland": 10.659872055053711, "antibody": 7.35197114944458, "disqualification": 10.06674575805664, "decatur": 9.195390701293945, "footballers": 10.499886512756348, "quake": 8.978842735290527, "slacks": 10.209641456604004, "48th": 9.997308731079102, "rein": 7.213832378387451, "scribe": 9.255075454711914, "stabilize": 7.46223258972168, "commits": 8.832993507385254, "exemplary": 9.585651397705078, "tho": 8.663616180419922, "##hort": 8.455710411071777, "##chison": 10.19439697265625, "pantry": 8.49807357788086, "traversed": 10.289556503295898, "##hiti": 8.862905502319336, "disrepair": 10.87402057647705, "identifiable": 8.345072746276855, "vibrated": 11.739391326904297, "baccalaureate": 8.905344009399414, "##nnis": 10.904325485229492, "csa": 8.819896697998047, "interviewing": 9.031340599060059, "##iensis": 9.975194931030273, "##ra\u00dfe": 12.577277183532715, "greaves": 11.435877799987793, "wealthiest": 8.779396057128906, "343": 8.581937789916992, "classed": 8.728525161743164, "jogged": 12.645099639892578, "\u00a35": 7.975555419921875, "##58": 7.817066669464111, "##atal": 7.98116397857666, "illuminating": 9.880215644836426, "knicks": 9.451811790466309, "respecting": 9.447501182556152, "##uno": 9.508081436157227, "scrubbed": 10.365585327148438, "##iji": 10.451781272888184, "##dles": 8.613190650939941, "kruger": 10.289556503295898, "moods": 9.021928787231445, "growls": 11.056939125061035, "raider": 10.1853609085083, "silvia": 10.87402057647705, "chefs": 8.313673973083496, "kam": 7.823262691497803, "vr": 7.825809001922607, "cree": 9.398540496826172, "percival": 10.804828643798828, "##terol": 5.966757297515869, "gunter": 10.57668399810791, "counterattack": 11.355432510375977, "defiant": 9.747928619384766, "henan": 11.086031913757324, "ze": 6.664970874786377, "##rasia": 8.78307819366455, "##riety": 9.204343795776367, "equivalence": 9.584007263183594, "submissions": 8.826038360595703, "##fra": 7.512505531311035, "##thor": 8.436747550964355, "bautista": 10.39104175567627, "mechanically": 8.764802932739258, "##heater": 9.680550575256348, "cornice": 10.455702781677246, "herbal": 7.1712822914123535, "templar": 10.479560852050781, "##mering": 8.82680892944336, "outputs": 8.477754592895508, "ruining": 9.845467567443848, "ligand": 8.913715362548828, "renumbered": 12.015321731567383, "extravagant": 9.389029502868652, "mika": 9.459036827087402, "blockbuster": 8.758304595947266, "eta": 8.21574592590332, "insurrection": 10.05089282989502, "##ilia": 8.997864723205566, "darkening": 9.482515335083008, "ferocious": 9.74213695526123, "pianos": 9.70993709564209, "strife": 9.724961280822754, "kinship": 9.622537612915039, "##aer": 9.36497974395752, "melee": 9.82643985748291, "##anor": 7.505490303039551, "##iste": 8.138490676879883, "##may": 8.807724952697754, "##oue": 10.256819725036621, "decidedly": 9.602249145507812, "weep": 9.545323371887207, "##jad": 9.702508926391602, "##missive": 9.324871063232422, "##ppel": 9.362343788146973, "354": 8.62257194519043, "puget": 9.289977073669434, "unease": 11.042703628540039, "##gnant": 7.396507263183594, "1629": 10.612804412841797, "hammering": 10.35487174987793, "kassel": 11.81295394897461, "ob": 5.653599739074707, "wessex": 10.83307933807373, "##lga": 8.485394477844238, "bromwich": 11.996803283691406, "egan": 10.2408447265625, "paranoia": 9.410902976989746, "utilization": 8.029631614685059, "##atable": 8.644808769226074, "##idad": 9.797541618347168, "contradictory": 9.245657920837402, "provoke": 9.079776763916016, "##ols": 8.133469581604004, "##ouring": 9.520341873168945, "##tangled": 10.428569793701172, "knesset": 12.199514389038086, "##very": 9.24917984008789, "##lette": 9.588949203491211, "plumbing": 7.369225025177002, "##sden": 11.753677368164062, "##\u00b9": 10.559101104736328, "greensboro": 9.2838716506958, "occult": 8.686796188354492, "sniff": 9.104903221130371, "338": 8.586170196533203, "zev": 11.028668403625488, "beaming": 10.95481014251709, "gamer": 8.36916446685791, "haggard": 10.372793197631836, "mahal": 9.112053871154785, "##olt": 8.866106986999512, "##pins": 9.302299499511719, "mendes": 9.934713363647461, "utmost": 9.007975578308105, "briefing": 9.064020156860352, "gunnery": 10.420949935913086, "##gut": 9.684176445007324, "##pher": 7.158993244171143, "##zh": 8.678788185119629, "##rok": 9.30478286743164, "1679": 10.689214706420898, "khalifa": 9.485489845275879, "sonya": 10.520634651184082, "##boot": 7.820723533630371, "principals": 9.097804069519043, "urbana": 9.867043495178223, "wiring": 7.511884689331055, "##liffe": 10.827364921569824, "##minating": 9.426223754882812, "##rrado": 11.768170356750488, "dahl": 9.021928787231445, "nyu": 9.420625686645508, "skepticism": 9.854042053222656, "np": 6.820031642913818, "townspeople": 10.91049861907959, "ithaca": 9.761573791503906, "lobster": 7.889847278594971, "somethin": 10.99441909790039, "##fur": 8.161602020263672, "##arina": 10.844606399536133, "##\u22121": 9.93005657196045, "freighter": 10.286233901977539, "zimmerman": 9.518800735473633, "biceps": 8.16716480255127, "contractual": 8.457306861877441, "##herton": 11.021724700927734, "amend": 7.92269229888916, "hurrying": 11.89236068725586, "subconscious": 9.342785835266113, "##anal": 8.855740547180176, "336": 8.360908508300781, "meng": 10.351325035095215, "clermont": 9.932381629943848, "spawning": 8.88553237915039, "##eia": 9.24917984008789, "##lub": 9.830636978149414, "dignitaries": 10.533292770385742, "impetus": 9.83485221862793, "snacks": 7.631777763366699, "spotting": 8.190547943115234, "twigs": 8.904510498046875, "##bilis": 8.987855911254883, "##cz": 9.139068603515625, "##ouk": 10.351325035095215, "libertadores": 12.881488800048828, "nic": 8.066417694091797, "skylar": 10.306334495544434, "##aina": 10.247204780578613, "##firm": 8.047855377197266, "gustave": 10.06674575805664, "asean": 10.948357582092285, "##anum": 9.816022872924805, "dieter": 9.228236198425293, "legislatures": 8.518814086914062, "flirt": 9.303540229797363, "bromley": 11.345816612243652, "trolls": 9.74213695526123, "umar": 10.810415267944336, "##bbies": 9.040842056274414, "##tyle": 7.9425482749938965, "blah": 10.064085960388184, "parc": 9.430442810058594, "bridgeport": 9.380949020385742, "crank": 7.675895690917969, "negligence": 8.517682075500488, "##nction": 7.69484806060791, "46th": 10.11586856842041, "constantin": 10.91049861907959, "molded": 8.475040435791016, "bandages": 9.66974925994873, "seriousness": 9.280226707458496, "00pm": 8.054242134094238, "siegel": 9.6933012008667, "carpets": 8.768430709838867, "compartments": 8.64931583404541, "upbeat": 9.751808166503906, "statehood": 9.114106178283691, "##dner": 10.650279998779297, "##edging": 9.891326904296875, "marko": 10.344270706176758, "730": 8.329484939575195, "platt": 7.860389709472656, "##hane": 9.572568893432617, "paving": 8.639042854309082, "##iy": 9.126508712768555, "1738": 10.467560768127441, "abbess": 11.697718620300293, "impatience": 10.77194881439209, "limousine": 9.36366081237793, "nbl": 11.394845962524414, "##talk": 8.946183204650879, "441": 8.695544242858887, "lucille": 9.795509338378906, "mojo": 10.032711029052734, "nightfall": 10.417162895202637, "robbers": 10.31653881072998, "##nais": 10.234525680541992, "karel": 10.599105834960938, "brisk": 7.943821907043457, "calves": 8.101244926452637, "replicate": 7.735416412353516, "ascribed": 9.761573791503906, "telescopes": 9.270570755004883, "##olf": 10.107511520385742, "intimidated": 10.061432838439941, "##reen": 9.71742057800293, "ballast": 9.371603012084961, "specialization": 8.046089172363281, "##sit": 6.466973304748535, "aerodynamic": 9.111028671264648, "caliphate": 10.459639549255371, "rainer": 11.195089340209961, "visionary": 9.248003959655762, "##arded": 9.920807838439941, "epsilon": 9.937049865722656, "##aday": 9.524978637695312, "##onte": 10.209641456604004, "aggregation": 8.914556503295898, "auditory": 8.145484924316406, "boosted": 9.335068702697754, "reunification": 10.38005256652832, "kathmandu": 10.567853927612305, "loco": 8.56281566619873, "robyn": 10.082853317260742, "402": 8.437270164489746, "acknowledges": 9.359713554382324, "appointing": 9.871415138244629, "humanoid": 9.532754898071289, "newell": 10.234525680541992, "redeveloped": 11.457042694091797, "restraints": 9.734466552734375, "##tained": 9.751808166503906, "barbarians": 10.689214706420898, "chopper": 9.318550109863281, "1609": 9.769455909729004, "italiana": 11.203353881835938, "##lez": 10.161656379699707, "##lho": 9.62767505645752, "investigates": 9.193164825439453, "wrestlemania": 10.10197925567627, "##anies": 8.705734252929688, "##bib": 9.447501182556152, "690": 8.400874137878418, "##falls": 9.045626640319824, "creaked": 13.024589538574219, "dragoons": 12.053421974182129, "gravely": 10.699189186096191, "minions": 10.002289772033691, "stupidity": 10.247204780578613, "volley": 10.567853927612305, "##harat": 10.10197925567627, "##week": 7.963130950927734, "musik": 11.87596607208252, "##eries": 9.550077438354492, "##uously": 9.893564224243164, "fungal": 7.1270833015441895, "massimo": 11.925976753234863, "semantics": 9.423420906066895, "malvern": 10.617413520812988, "##ahl": 9.82643985748291, "##pee": 8.146655082702637, "discourage": 8.691496849060059, "embryo": 6.968766689300537, "imperialism": 9.040842056274414, "1910s": 10.479560852050781, "profoundly": 9.389029502868652, "##ddled": 10.78278923034668, "jiangsu": 11.170698165893555, "sparkled": 12.645099639892578, "stat": 6.825850009918213, "##holz": 11.007978439331055, "sweatshirt": 9.911643981933594, "tobin": 11.035661697387695, "##iction": 8.433101654052734, "sneered": 12.838003158569336, "##cheon": 10.247204780578613, "##oit": 8.787514686584473, "brit": 7.26909065246582, "causal": 8.642242431640625, "smyth": 10.372793197631836, "##neuve": 11.237112998962402, "diffuse": 7.500772476196289, "perrin": 10.631366729736328, "silvio": 11.582205772399902, "##ipes": 10.164588928222656, "##recht": 11.12363052368164, "detonated": 10.471545219421387, "iqbal": 11.606746673583984, "selma": 9.61912727355957, "##nism": 9.443209648132324, "##zumi": 11.237112998962402, "roasted": 7.395585536956787, "##riders": 11.272050857543945, "tay": 8.676795959472656, "##ados": 9.372932434082031, "##mament": 10.337265014648438, "##mut": 7.661372661590576, "##rud": 8.757585525512695, "840": 8.051043510437012, "completes": 8.202860832214355, "nipples": 8.916240692138672, "cfa": 9.23981761932373, "flavour": 7.5436296463012695, "hirsch": 9.67333698272705, "##laus": 9.769455909729004, "calderon": 10.880008697509766, "sneakers": 9.21565055847168, "moravian": 10.72972583770752, "##ksha": 9.932381629943848, "1622": 10.699189186096191, "rq": 10.451781272888184, "294": 8.522218704223633, "##imeters": 7.905981540679932, "bodo": 11.631905555725098, "##isance": 8.61132526397705, "##pre": 6.481784820556641, "##ronia": 11.457042694091797, "anatomical": 7.753169059753418, "excerpt": 8.388367652893066, "##lke": 9.394453048706055, "dh": 6.838749885559082, "kunst": 11.384845733642578, "##tablished": 10.827364921569824, "##scoe": 10.6082181930542, "biomass": 8.495857238769531, "panted": 13.552656173706055, "unharmed": 10.886032104492188, "gael": 10.323400497436523, "housemates": 11.355432510375977, "montpellier": 11.404947280883789, "##59": 7.855417251586914, "coa": 7.117552280426025, "rodents": 7.989136219024658, "tonic": 8.203274726867676, "hickory": 8.854947090148926, "singleton": 10.032711029052734, "##taro": 10.617413520812988, "451": 8.741887092590332, "1719": 10.77194881439209, "aldo": 8.37111759185791, "breaststroke": 11.18689250946045, "dempsey": 10.096477508544922, "och": 8.815315246582031, "rocco": 10.504002571105957, "##cuit": 8.797194480895996, "merton": 10.424753189086914, "dissemination": 9.268171310424805, "midsummer": 9.481032371520996, "serials": 10.669557571411133, "##idi": 6.404003620147705, "haji": 10.967839241027832, "polynomials": 10.152910232543945, "##rdon": 10.025017738342285, "gs": 6.963969707489014, "enoch": 10.440108299255371, "prematurely": 8.988761901855469, "shutter": 8.063539505004883, "taunton": 10.804828643798828, "\u00a33": 7.750538349151611, "##grating": 9.751808166503906, "##inates": 8.659695625305176, "archangel": 10.107511520385742, "harassed": 10.299589157104492, "##asco": 9.537449836730957, "326": 8.64288330078125, "archway": 10.880008697509766, "dazzling": 9.275386810302734, "##ecin": 10.4058837890625, "1736": 10.237680435180664, "sumo": 10.197427749633789, "wat": 8.534801483154297, "##kovich": 11.042703628540039, "1086": 10.152910232543945, "honneur": 12.199514389038086, "##ently": 9.803664207458496, "##nostic": 9.732558250427246, "##ttal": 9.603924751281738, "##idon": 8.672823905944824, "1605": 10.306334495544434, "403": 8.25935173034668, "1716": 10.904325485229492, "blogger": 8.61693286895752, "rents": 8.624458312988281, "##gnan": 7.6082611083984375, "hires": 8.77792739868164, "##ikh": 10.67443561553955, "##dant": 8.594688415527344, "howie": 10.279622077941895, "##rons": 8.70915412902832, "handler": 8.242883682250977, "retracted": 10.292889595031738, "shocks": 8.735535621643066, "1632": 10.05351734161377, "arun": 9.31226921081543, "duluth": 9.585651397705078, "kepler": 9.532754898071289, "trumpeter": 10.447875022888184, "##lary": 8.680118560791016, "peeking": 11.15476131439209, "seasoned": 7.684219837188721, "trooper": 9.785408020019531, "##mara": 9.129633903503418, "laszlo": 11.404947280883789, "##iciencies": 7.873077869415283, "##rti": 5.444740295410156, "heterosexual": 9.55965518951416, "##inatory": 9.539019584655762, "##ssion": 8.254556655883789, "indira": 10.669557571411133, "jogging": 8.81760311126709, "##inga": 9.809823989868164, "##lism": 9.429035186767578, "beit": 11.245733261108398, "dissatisfaction": 9.771435737609863, "malice": 10.085562705993652, "##ately": 8.981537818908691, "nedra": 12.717859268188477, "peeling": 8.090484619140625, "##rgeon": 9.0610933303833, "47th": 10.107511520385742, "stadiums": 9.438936233520508, "475": 8.25021743774414, "vertigo": 7.91461181640625, "##ains": 8.96193790435791, "iced": 8.346502304077148, "restroom": 8.822195053100586, "##plify": 7.840934753417969, "##tub": 7.48292350769043, "illustrating": 9.51726245880127, "pear": 7.527105808258057, "##chner": 10.516449928283691, "##sibility": 9.491464614868164, "inorganic": 7.654428482055664, "rappers": 9.38632869720459, "receipts": 7.9608588218688965, "watery": 7.442733287811279, "##kura": 10.916709899902344, "lucinda": 10.95481014251709, "##oulos": 10.344270706176758, "reintroduced": 10.012328147888184, "##8th": 10.323400497436523, "##tched": 9.73829460144043, "gracefully": 10.17343807220459, "saxons": 9.564477920532227, "nutritional": 6.437074661254883, "wastewater": 8.47829818725586, "rained": 10.15001106262207, "favourites": 9.925421714782715, "bedrock": 9.036080360412598, "fisted": 12.015321731567383, "hallways": 10.043060302734375, "likeness": 9.502006530761719, "upscale": 8.428434371948242, "##lateral": 9.045626640319824, "1580": 9.795509338378906, "blinds": 9.269370079040527, "prequel": 9.25035572052002, "##pps": 9.975194931030273, "##tama": 8.428434371948242, "deter": 6.652539253234863, "humiliating": 10.417162895202637, "restraining": 9.196505546569824, "tn": 7.105902194976807, "vents": 8.195455551147461, "1659": 10.850419998168945, "laundering": 9.296119689941406, "recess": 7.352676868438721, "rosary": 10.333781242370605, "tractors": 8.963704109191895, "coulter": 10.436246871948242, "federer": 9.734466552734375, "##ifiers": 7.963456153869629, "##plin": 8.412519454956055, "persistence": 8.990575790405273, "##quitable": 8.829896926879883, "geschichte": 12.838003158569336, "pendulum": 9.152853965759277, "quakers": 9.963117599487305, "##beam": 9.78139591217041, "bassett": 10.319963455200195, "pictorial": 9.506559371948242, "buffet": 8.120074272155762, "koln": 11.697718620300293, "##sitor": 9.415058135986328, "drills": 8.790482521057129, "reciprocal": 8.569348335266113, "shooters": 9.447501182556152, "##57": 7.883825778961182, "##cton": 7.418881416320801, "##tees": 9.70993709564209, "converge": 7.979841709136963, "pip": 7.520613670349121, "dmitri": 10.337265014648438, "donnelly": 10.516449928283691, "yamamoto": 11.007978439331055, "aqua": 7.462035655975342, "azores": 10.344270706176758, "demographics": 7.194814205169678, "hypnotic": 9.229388236999512, "spitfire": 10.87402057647705, "suspend": 8.363329887390137, "wryly": 12.680817604064941, "roderick": 10.755906105041504, "##rran": 9.436097145080566, "sebastien": 11.81295394897461, "##asurable": 7.944140911102295, "mavericks": 9.639764785766602, "##fles": 9.035130500793457, "##200": 7.820441722869873, "himalayan": 8.900354385375977, "prodigy": 9.667960166931152, "##iance": 9.184309959411621, "transvaal": 10.961302757263184, "demonstrators": 10.6082181930542, "handcuffs": 10.838826179504395, "dodged": 11.534859657287598, "mcnamara": 10.030139923095703, "sublime": 9.653762817382812, "1726": 10.554753303527832, "crazed": 10.788253784179688, "##efined": 8.832993507385254, "##till": 7.534275054931641, "ivo": 9.51726245880127, "pondered": 11.078679084777832, "reconciled": 10.273054122924805, "shrill": 10.471545219421387, "sava": 9.46924114227295, "##duk": 10.499886512756348, "bal": 6.79083251953125, "cad": 7.116854667663574, "heresy": 10.35487174987793, "jaipur": 10.636061668395996, "goran": 11.093440055847168, "##nished": 9.6933012008667, "341": 8.726431846618652, "lux": 8.282336235046387, "shelly": 10.045663833618164, "whitehall": 10.436246871948242, "##hre": 6.187503814697266, "israelis": 11.056939125061035, "peacekeeping": 10.409629821777344, "##wled": 11.211687088012695, "1703": 10.218900680541992, "demetrius": 11.435877799987793, "ousted": 10.447875022888184, "##arians": 10.292889595031738, "##zos": 8.812272071838379, "beale": 10.550423622131348, "anwar": 10.83307933807373, "backstroke": 11.131322860717773, "raged": 10.451781272888184, "shrinking": 8.81075382232666, "cremated": 9.550077438354492, "##yck": 10.302956581115723, "benign": 6.874971389770508, "towing": 8.121976852416992, "wadi": 9.535881996154785, "darmstadt": 11.500764846801758, "landfill": 8.479931831359863, "parana": 9.582365036010742, "soothe": 8.022709846496582, "colleen": 9.9093656539917, "sidewalks": 9.182108879089355, "mayfair": 10.719443321228027, "tumble": 8.779396057128906, "hepatitis": 6.891079902648926, "ferrer": 10.2536039352417, "superstructure": 10.745351791381836, "##gingly": 11.446404457092285, "##urse": 6.665060043334961, "##wee": 6.2540059089660645, "anthropological": 10.409629821777344, "translators": 9.652002334594727, "##mies": 9.238653182983398, "closeness": 10.05089282989502, "hooves": 9.497474670410156, "##pw": 9.324871063232422, "mondays": 9.345372200012207, "##roll": 8.291318893432617, "##vita": 7.902917385101318, "landscaping": 8.149392127990723, "##urized": 7.927384376525879, "purification": 8.819131851196289, "sock": 8.813031196594238, "thorns": 9.51726245880127, "thwarted": 10.684264183044434, "jalan": 11.263200759887695, "tiberius": 10.64551830291748, "##taka": 11.237112998962402, "saline": 8.005951881408691, "##rito": 9.0610933303833, "confidently": 9.70993709564209, "khyber": 11.582205772399902, "sculptors": 10.487641334533691, "##ij": 9.156063079833984, "brahms": 10.935578346252441, "hammersmith": 11.25442886352539, "inspectors": 8.904510498046875, "battista": 11.374944686889648, "fivb": 12.610613822937012, "fragmentation": 9.316032409667969, "hackney": 10.650279998779297, "##uls": 8.073649406433105, "arresting": 10.032711029052734, "exercising": 7.595806121826172, "antoinette": 10.167530059814453, "bedfordshire": 10.99441909790039, "##zily": 11.594400405883789, "dyed": 8.755430221557617, "##hema": 7.847570896148682, "1656": 10.862151145935059, "racetrack": 9.858357429504395, "variability": 8.318761825561523, "##tique": 10.684264183044434, "1655": 10.394731521606445, "austrians": 11.336292266845703, "deteriorating": 9.803664207458496, "madman": 11.056939125061035, "theorists": 9.242149353027344, "aix": 10.508133888244629, "lehman": 10.080150604248047, "weathered": 9.318550109863281, "1731": 10.26978588104248, "decreed": 10.59458065032959, "eruptions": 8.078014373779297, "1729": 10.309724807739258, "flaw": 8.953154563903809, "quinlan": 11.582205772399902, "sorbonne": 12.177291870117188, "flutes": 9.907093048095703, "nunez": 10.622042655944824, "1711": 10.499886512756348, "adored": 10.132794380187988, "downwards": 9.194276809692383, "fable": 8.955781936645508, "rasped": 13.392313957214355, "1712": 10.319963455200195, "moritz": 10.67443561553955, "mouthful": 10.048274993896484, "renegade": 9.785408020019531, "shivers": 10.850419998168945, "stunts": 9.916215896606445, "dysfunction": 6.977096080780029, "restrain": 9.4795503616333, "translit": 9.0610933303833, "327": 8.581937789916992, "pancakes": 8.848625183105469, "##avio": 10.061432838439941, "##cision": 8.520515441894531, "##tray": 10.121478080749512, "351": 8.735535621643066, "vial": 8.347933769226074, "##lden": 9.58072566986084, "bain": 9.083754539489746, "##maid": 9.354474067687988, "##oxide": 7.758715629577637, "chihuahua": 8.676133155822754, "malacca": 11.14688777923584, "vimes": 1.0, "##rba": 7.323288440704346, "##rnier": 10.487641334533691, "1664": 10.289556503295898, "donnie": 9.799578666687012, "plaques": 8.638404846191406, "##ually": 8.284574508666992, "337": 8.608842849731445, "bangs": 9.994827270507812, "floppy": 8.822962760925293, "huntsville": 9.089751243591309, "loretta": 9.878008842468262, "nikolay": 11.425460815429688, "##otte": 9.486980438232422, "eater": 7.928011417388916, "handgun": 8.898695945739746, "ubiquitous": 8.464792251586914, "##hett": 9.841207504272461, "eras": 8.695544242858887, "zodiac": 7.638801574707031, "1634": 10.631366729736328, "##omorphic": 9.832742691040039, "1820s": 9.989882469177246, "##zog": 10.599105834960938, "cochran": 10.118669509887695, "##bula": 7.733864784240723, "##lithic": 9.622537612915039, "warring": 9.724961280822754, "##rada": 10.01738452911377, "dalai": 10.636061668395996, "excused": 9.953558921813965, "blazers": 9.997308731079102, "mcconnell": 9.67333698272705, "reeling": 10.2408447265625, "bot": 7.196473598480225, "este": 7.461051940917969, "##abi": 7.715433597564697, "geese": 8.897041320800781, "hoax": 8.755430221557617, "taxon": 9.380949020385742, "##bla": 6.489869117736816, "guitarists": 9.958327293395996, "##icon": 8.94531536102295, "condemning": 11.056939125061035, "hunts": 8.942715644836426, "inversion": 8.916240692138672, "moffat": 10.974417686462402, "taekwondo": 10.39104175567627, "##lvis": 7.24598503112793, "1624": 10.504002571105957, "stammered": 13.743711471557617, "##rest": 8.444605827331543, "##rzy": 10.512283325195312, "sousa": 10.850419998168945, "fundraiser": 9.118223190307617, "marylebone": 11.457042694091797, "navigable": 9.615729331970215, "uptown": 9.485489845275879, "cabbage": 7.374442100524902, "daniela": 11.28097915649414, "salman": 10.313125610351562, "shitty": 10.880008697509766, "whimper": 11.425460815429688, "##kian": 8.380444526672363, "##utive": 7.919576644897461, "programmers": 8.785293579101562, "protections": 8.546379089355469, "rm": 7.592660427093506, "##rmi": 7.787465572357178, "##rued": 8.137716293334961, "forceful": 8.936676025390625, "##enes": 9.177720069885254, "fuss": 8.59163761138916, "##tao": 11.13907527923584, "##wash": 7.3480987548828125, "brat": 8.56994342803955, "oppressive": 9.551668167114258, "reykjavik": 9.434680938720703, "spartak": 12.926950454711914, "ticking": 9.813952445983887, "##inkles": 7.852213382720947, "##kiewicz": 11.457042694091797, "adolph": 9.845467567443848, "horst": 10.838826179504395, "maui": 8.510915756225586, "protege": 10.10197925567627, "straighten": 8.464255332946777, "cpc": 8.962821006774902, "landau": 10.83307933807373, "concourse": 9.728752136230469, "clements": 10.479560852050781, "resultant": 8.905344009399414, "##ando": 8.887988090515137, "imaginative": 9.113079071044922, "joo": 9.785408020019531, "reactivated": 10.409629821777344, "##rem": 6.9715352058410645, "##ffled": 10.617413520812988, "##uising": 7.749225616455078, "consultative": 10.617413520812988, "##guide": 8.342695236206055, "flop": 8.69351863861084, "kaitlyn": 10.69419002532959, "mergers": 9.326140403747559, "parenting": 8.437270164489746, "somber": 10.420949935913086, "##vron": 9.311017036437988, "supervise": 8.37160587310791, "vidhan": 12.454044342041016, "##imum": 7.544270992279053, "courtship": 9.562868118286133, "exemplified": 9.882428169250488, "harmonies": 10.302956581115723, "medallist": 12.053421974182129, "refining": 8.483752250671387, "##rrow": 9.951184272766113, "##\u043a\u0430": 10.39104175567627, "amara": 9.475119590759277, "##hum": 7.706594944000244, "780": 8.280549049377441, "goalscorer": 12.22224235534668, "sited": 10.256819725036621, "overshadowed": 10.074767112731934, "rohan": 10.856268882751465, "displeasure": 10.436246871948242, "secretive": 9.593915939331055, "multiplied": 7.804788112640381, "osman": 10.714341163635254, "##orth": 10.326848030090332, "engravings": 10.886032104492188, "padre": 9.803664207458496, "##kali": 6.762754917144775, "##veda": 9.548490524291992, "miniatures": 10.504002571105957, "mis": 5.539947032928467, "##yala": 10.77194881439209, "clap": 9.186516761779785, "pali": 8.323875427246094, "rook": 9.66439151763916, "##cana": 9.427628517150879, "1692": 10.27633285522461, "57th": 10.296234130859375, "antennae": 9.301060676574707, "astro": 7.516239643096924, "oskar": 11.014827728271484, "1628": 10.788253784179688, "bulldog": 8.947921752929688, "crotch": 9.678742408752441, "hackett": 10.689214706420898, "yucatan": 9.200977325439453, "##sure": 7.683482646942139, "amplifiers": 9.632838249206543, "brno": 11.523365020751953, "ferrara": 11.15476131439209, "migrating": 9.161433219909668, "##gree": 7.704334735870361, "thanking": 10.286233901977539, "turing": 10.124295234680176, "##eza": 10.22512149810791, "mccann": 10.804828643798828, "ting": 8.647381782531738, "andersson": 11.203353881835938, "onslaught": 10.292889595031738, "gaines": 8.78307819366455, "ganga": 10.113075256347656, "incense": 9.265777587890625, "standardization": 9.064020156860352, "##mation": 8.491438865661621, "sentai": 11.457042694091797, "scuba": 8.853363037109375, "stuffing": 8.634581565856934, "turquoise": 8.744723320007324, "waivers": 9.318550109863281, "alloys": 8.006969451904297, "##vitt": 10.804828643798828, "regaining": 10.365585327148438, "vaults": 9.970346450805664, "##clops": 10.282922744750977, "##gizing": 9.667960166931152, "digger": 9.64673900604248, "furry": 8.868515014648438, "memorabilia": 9.419230461120605, "probing": 10.107511520385742, "##iad": 9.035130500793457, "payton": 10.546113967895508, "rec": 4.9100728034973145, "deutschland": 10.734908103942871, "filippo": 11.064133644104004, "opaque": 8.097149848937988, "seamen": 10.755906105041504, "zenith": 9.734466552734375, "afrikaans": 9.653762817382812, "##filtration": 8.847838401794434, "disciplined": 9.491464614868164, "inspirational": 9.098814964294434, "##merie": 11.631905555725098, "banco": 9.561260223388672, "confuse": 7.798153400421143, "grafton": 10.292889595031738, "tod": 8.987855911254883, "##dgets": 8.479931831359863, "championed": 10.1853609085083, "simi": 8.538838386535645, "anomaly": 9.062067985534668, "biplane": 11.47866439819336, "##ceptive": 8.209074974060059, "electrode": 7.791836738586426, "##para": 6.990273952484131, "1697": 10.804828643798828, "cleavage": 8.727827072143555, "crossbow": 10.191375732421875, "swirl": 8.868515014648438, "informant": 10.155817031860352, "##lars": 8.436225891113281, "##osta": 6.8654937744140625, "afi": 8.52849006652832, "bonfire": 10.027575492858887, "spec": 6.557806968688965, "##oux": 11.093440055847168, "lakeside": 9.307271957397461, "slump": 9.220208168029785, "##culus": 9.151786804199219, "##lais": 10.286233901977539, "##qvist": 11.697718620300293, "##rrigan": 10.941947937011719, "1016": 10.179381370544434, "facades": 10.868067741394043, "borg": 9.05429744720459, "inwardly": 11.355432510375977, "cervical": 6.823976039886475, "xl": 7.508785247802734, "pointedly": 12.199514389038086, "050": 8.072561264038086, "stabilization": 8.94879150390625, "##odon": 7.665948867797852, "chests": 9.44178295135498, "1699": 10.344270706176758, "hacked": 9.575823783874512, "ctv": 10.699189186096191, "orthogonal": 10.135643005371094, "suzy": 10.799272537231445, "##lastic": 7.960534572601318, "gaulle": 10.141366004943848, "jacobite": 11.14688777923584, "rearview": 10.77735424041748, "##cam": 7.3842291831970215, "##erted": 8.420188903808594, "ashby": 10.95481014251709, "##drik": 11.071379661560059, "##igate": 8.410993576049805, "##mise": 8.905344009399414, "##zbek": 10.987707138061523, "affectionately": 9.747928619384766, "canine": 7.451850414276123, "disperse": 9.087748527526855, "latham": 10.463592529296875, "##istles": 9.029451370239258, "##ivar": 8.089377403259277, "spielberg": 9.293657302856445, "##orin": 7.9654083251953125, "##idium": 8.725735664367676, "ezekiel": 9.824347496032715, "cid": 7.422470569610596, "##sg": 8.34127140045166, "durga": 10.892093658447266, "middletown": 9.470707893371582, "##cina": 9.072853088378906, "customized": 7.653235912322998, "frontiers": 9.70993709564209, "harden": 7.461051940917969, "##etano": 11.943219184875488, "##zzy": 9.321073532104492, "1604": 10.49578857421875, "bolsheviks": 10.337265014648438, "##66": 7.529419898986816, "coloration": 8.718101501464844, "yoko": 9.948814392089844, "##bedo": 10.104742050170898, "briefs": 9.531194686889648, "slabs": 8.628874778747559, "debra": 9.598907470703125, "liquidation": 9.383634567260742, "plumage": 9.071866989135742, "##oin": 8.334653854370117, "blossoms": 8.668209075927734, "dementia": 7.345292091369629, "subsidy": 9.051399230957031, "1611": 10.15001106262207, "proctor": 9.472175598144531, "relational": 8.8016939163208, "jerseys": 9.434680938720703, "parochial": 11.007978439331055, "ter": 6.899681568145752, "##ici": 6.0830769538879395, "esa": 8.6975736618042, "peshawar": 11.263200759887695, "cavalier": 9.689640998840332, "loren": 9.35840129852295, "cpi": 8.639681816101074, "idiots": 10.302956581115723, "shamrock": 10.032711029052734, "1646": 11.228565216064453, "dutton": 11.263200759887695, "malabar": 10.745351791381836, "mustache": 9.90030574798584, "##endez": 10.499886512756348, "##ocytes": 7.083002090454102, "referencing": 9.0144624710083, "terminates": 9.195390701293945, "marche": 10.002289772033691, "yarmouth": 10.961302757263184, "##sop": 7.9508585929870605, "acton": 10.191375732421875, "mated": 9.605602264404297, "seton": 10.398435592651367, "subtly": 9.695136070251465, "baptised": 10.650279998779297, "beige": 8.90284538269043, "extremes": 8.126940727233887, "jolted": 12.13427448272705, "kristina": 10.027575492858887, "telecast": 9.524978637695312, "##actic": 7.882026672363281, "safeguard": 8.223725318908691, "waldo": 9.087748527526855, "##baldi": 10.533292770385742, "##bular": 7.929581642150879, "endeavors": 9.491464614868164, "sloppy": 9.805713653564453, "subterranean": 9.704360961914062, "##ensburg": 11.943219184875488, "##itung": 12.13427448272705, "delicately": 10.372793197631836, "pigment": 6.648080348968506, "tq": 10.266529083251953, "##scu": 6.9571733474731445, "1626": 10.788253784179688, "##ound": 7.792110443115234, "collisions": 8.78307819366455, "coveted": 8.927257537841797, "herds": 9.049470901489258, "##personal": 8.26680850982666, "##meister": 10.572258949279785, "##nberger": 11.131322860717773, "chopra": 10.684264183044434, "##ricting": 9.520341873168945, "abnormalities": 7.307139873504639, "defective": 8.049271583557129, "galician": 10.402153015136719, "lucie": 9.771435737609863, "##dilly": 10.689214706420898, "alligator": 8.30815315246582, "likened": 9.818097114562988, "##genase": 9.032286643981934, "burundi": 9.747928619384766, "clears": 8.578926086425781, "complexion": 8.926405906677246, "derelict": 10.766572952270508, "deafening": 11.374944686889648, "diablo": 9.514192581176758, "fingered": 10.961302757263184, "champaign": 9.689640998840332, "dogg": 8.803197860717773, "enlist": 8.30815315246582, "isotope": 7.785831451416016, "labeling": 8.235603332519531, "mrna": 7.684219837188721, "##erre": 7.8850274085998535, "brilliance": 9.417838096618652, "marvelous": 9.545323371887207, "##ayo": 8.927257537841797, "1652": 10.72972583770752, "crawley": 10.590076446533203, "ether": 8.16517448425293, "footed": 9.374263763427734, "dwellers": 9.492963790893555, "deserts": 7.948294162750244, "hamish": 11.299078941345215, "rubs": 9.341495513916016, "warlock": 10.483592987060547, "skimmed": 10.113075256347656, "##lizer": 7.0099968910217285, "870": 8.40592098236084, "buick": 8.836100578308105, "embark": 8.585564613342285, "heraldic": 9.71742057800293, "irregularities": 9.219067573547363, "##ajan": 10.719443321228027, "kiara": 10.967839241027832, "##kulam": 12.22224235534668, "##ieg": 8.423787117004395, "antigen": 7.099853515625, "kowalski": 11.670870780944824, "##lge": 8.926405906677246, "oakley": 9.862690925598145, "visitation": 8.592857360839844, "##mbit": 10.750615119934082, "vt": 8.07582950592041, "##suit": 8.725735664367676, "1570": 10.061432838439941, "murderers": 10.541821479797363, "##miento": 10.581128120422363, "##rites": 10.004790306091309, "chimneys": 9.923111915588379, "##sling": 9.524978637695312, "condemn": 10.107511520385742, "custer": 9.805713653564453, "exchequer": 10.95481014251709, "havre": 10.886032104492188, "##ghi": 9.10185432434082, "fluctuations": 8.279657363891602, "##rations": 8.837657928466797, "dfb": 11.042703628540039, "hendricks": 10.099224090576172, "vaccines": 7.376428127288818, "##tarian": 9.140122413635254, "nietzsche": 10.750615119934082, "biking": 8.539994239807129, "juicy": 7.966711521148682, "##duced": 9.652002334594727, "brooding": 10.099224090576172, "scrolling": 9.346667289733887, "selangor": 11.782876014709473, "##ragan": 10.499886512756348, "352": 8.537105560302734, "annum": 7.9709601402282715, "boomed": 10.886032104492188, "seminole": 9.093770027160645, "sugarcane": 9.404016494750977, "##dna": 8.780131340026855, "departmental": 9.299822807312012, "dismissing": 10.57668399810791, "innsbruck": 11.203353881835938, "arteries": 6.27318811416626, "ashok": 10.2408447265625, "batavia": 10.626693725585938, "daze": 11.211687088012695, "kun": 8.42070198059082, "overtook": 10.60365104675293, "##rga": 8.789739608764648, "##tlan": 9.379608154296875, "beheaded": 10.810415267944336, "gaddafi": 11.25442886352539, "holm": 9.292428970336914, "electronically": 7.667881965637207, "faulty": 8.144705772399902, "galilee": 9.769455909729004, "fractures": 7.28743839263916, "kobayashi": 11.523365020751953, "##lized": 7.4795122146606445, "gunmen": 10.929248809814453, "magma": 7.544912338256836, "aramaic": 9.447501182556152, "mala": 7.33622407913208, "eastenders": 10.904325485229492, "inference": 8.929817199707031, "messengers": 8.858918190002441, "bf": 8.309070587158203, "##qu": 7.500567436218262, "407": 8.487039566040039, "bathrooms": 8.063539505004883, "##vere": 9.152853965759277, "1658": 10.599105834960938, "flashbacks": 9.984962463378906, "ideally": 7.360116481781006, "misunderstood": 8.677459716796875, "##jali": 10.816033363342285, "##weather": 8.433622360229492, "mendez": 10.904325485229492, "##grounds": 9.089751243591309, "505": 8.578324317932129, "uncanny": 10.19439697265625, "##iii": 10.0720853805542, "1709": 10.750615119934082, "friendships": 9.535881996154785, "##nbc": 9.021928787231445, "sacrament": 9.632838249206543, "accommodated": 10.2408447265625, "reiterated": 10.631366729736328, "logistical": 10.040462493896484, "pebbles": 9.318550109863281, "thumped": 12.926950454711914, "##escence": 9.27297592163086, "administering": 8.339849472045898, "decrees": 10.2536039352417, "drafts": 8.886350631713867, "##flight": 9.419230461120605, "##cased": 9.111028671264648, "##tula": 10.581128120422363, "futuristic": 9.734466552734375, "picket": 9.306026458740234, "intimidation": 9.934713363647461, "winthrop": 10.05878734588623, "##fahan": 12.318702697753906, "interfered": 10.508133888244629, "339": 8.787514686584473, "afar": 9.83908462524414, "francoise": 11.644725799560547, "morally": 9.086749076843262, "uta": 9.69697380065918, "cochin": 10.110289573669434, "croft": 10.26328182220459, "dwarfs": 9.269370079040527, "##bruck": 11.415151596069336, "##dents": 9.322338104248047, "##nami": 8.459440231323242, "biker": 9.486980438232422, "##hner": 10.037872314453125, "##meral": 8.192998886108398, "nano": 7.627355098724365, "##isen": 9.118223190307617, "##ometric": 8.287715911865234, "##pres": 7.981494903564453, "##\u0430\u043d": 10.554753303527832, "brightened": 11.534859657287598, "meek": 9.412286758422852, "parcels": 8.898695945739746, "securely": 7.980502605438232, "gunners": 11.446404457092285, "##jhl": 12.344346046447754, "##zko": 10.21271800994873, "agile": 8.322478294372559, "hysteria": 9.975194931030273, "##lten": 11.14688777923584, "##rcus": 10.091005325317383, "bukit": 12.09303092956543, "champs": 9.779396057128906, "chevy": 8.076192855834961, "cuckoo": 9.904826164245605, "leith": 11.546487808227539, "sadler": 10.77735424041748, "theologians": 10.987707138061523, "welded": 8.874963760375977, "##section": 8.470712661743164, "1663": 10.541821479797363, "jj": 9.427628517150879, "plurality": 10.030139923095703, "xander": 11.299078941345215, "##rooms": 8.91877269744873, "##formed": 8.679452896118164, "shredded": 8.172759056091309, "temps": 8.541731834411621, "intimately": 9.607282638549805, "pau": 9.111028671264648, "tormented": 10.704215049743652, "##lok": 9.122357368469238, "##stellar": 9.437515258789062, "1618": 10.59458065032959, "charred": 9.475119590759277, "ems": 8.552218437194824, "essen": 10.096477508544922, "##mmel": 9.66617488861084, "alarms": 9.021928787231445, "spraying": 8.668209075927734, "ascot": 10.862151145935059, "blooms": 7.683728218078613, "twinkle": 10.428569793701172, "##abia": 10.724571228027344, "##apes": 9.044668197631836, "internment": 10.14712142944336, "obsidian": 9.286309242248535, "##chaft": 11.697718620300293, "snoop": 9.271772384643555, "##dav": 8.269453048706055, "##ooping": 9.045626640319824, "malibu": 9.000612258911133, "##tension": 6.908244609832764, "quiver": 10.099224090576172, "##itia": 7.859803199768066, "hays": 9.246830940246582, "mcintosh": 10.417162895202637, "travers": 9.55325984954834, "walsall": 12.483458518981934, "##ffie": 9.62767505645752, "1623": 10.17343807220459, "beverley": 11.042703628540039, "schwarz": 9.25862979888916, "plunging": 9.937049865722656, "structurally": 8.642242431640625, "m3": 8.4546480178833, "rosenthal": 10.337265014648438, "vikram": 11.042703628540039, "##tsk": 10.459639549255371, "770": 7.962806224822998, "ghz": 8.661001205444336, "##onda": 8.74970531463623, "##tiv": 7.42057991027832, "chalmers": 11.12363052368164, "groningen": 11.606746673583984, "pew": 8.492541313171387, "reckon": 8.90284538269043, "unicef": 9.893564224243164, "##rvis": 10.372793197631836, "55th": 10.372793197631836, "##gni": 7.91213846206665, "1651": 10.554753303527832, "sulawesi": 10.981040954589844, "avila": 10.508133888244629, "cai": 8.092700958251953, "metaphysical": 9.341495513916016, "screwing": 10.516449928283691, "turbulence": 9.545323371887207, "##mberg": 11.042703628540039, "augusto": 11.404947280883789, "samba": 9.695136070251465, "56th": 10.387365341186523, "baffled": 10.302956581115723, "momentary": 10.019922256469727, "toxin": 6.694868564605713, "##urian": 10.550423622131348, "##wani": 10.3407621383667, "aachen": 11.606746673583984, "condoms": 9.053330421447754, "dali": 9.459036827087402, "steppe": 8.78307819366455, "##3d": 9.570945739746094, "##app": 7.314077377319336, "##oed": 9.614034652709961, "##year": 8.427399635314941, "adolescence": 8.450407028198242, "dauphin": 10.043060302734375, "electrically": 8.463719367980957, "inaccessible": 9.715544700622559, "microscopy": 9.270570755004883, "nikita": 10.740116119384766, "##ega": 7.581062316894531, "atv": 8.536529541015625, "##cel": 7.104386806488037, "##enter": 7.265849590301514, "##oles": 8.41404914855957, "##oteric": 9.893564224243164, "##\u044b": 10.590076446533203, "accountants": 8.278765678405762, "punishments": 9.359713554382324, "wrongly": 9.401274681091309, "bribes": 11.14688777923584, "adventurous": 9.129633903503418, "clinch": 9.695136070251465, "flinders": 10.793747901916504, "southland": 10.72972583770752, "##hem": 7.806453704833984, "##kata": 10.655064582824707, "gough": 11.326858520507812, "##ciency": 7.523959159851074, "lads": 10.87402057647705, "soared": 9.389029502868652, "##\u05d4": 9.548490524291992, "undergoes": 8.241166114807129, "deformation": 8.94531536102295, "outlawed": 9.572568893432617, "rubbish": 9.652002334594727, "##arus": 10.512283325195312, "##mussen": 10.512283325195312, "##nidae": 10.369182586669922, "##rzburg": 11.446404457092285, "arcs": 9.021928787231445, "##ingdon": 10.49578857421875, "##tituted": 9.702508926391602, "1695": 11.049796104431152, "wheelbase": 9.789436340332031, "wheeling": 9.939391136169434, "bombardier": 10.323400497436523, "campground": 8.260663986206055, "zebra": 8.45997428894043, "##lices": 9.85189151763916, "##oj": 8.491990089416504, "##bain": 9.587299346923828, "lullaby": 10.655064582824707, "##ecure": 9.390382766723633, "donetsk": 12.09303092956543, "wylie": 10.459639549255371, "grenada": 9.923111915588379, "##arding": 9.219067573547363, "##\u03b7\u03c2": 9.898054122924805, "squinting": 10.679337501525879, "eireann": 11.195089340209961, "opposes": 9.451811790466309, "##andra": 10.886032104492188, "maximal": 8.837657928466797, "runes": 9.437515258789062, "##broken": 9.83908462524414, "##cuting": 9.79145622253418, "##iface": 11.25442886352539, "##ror": 7.8940839767456055, "##rosis": 7.145991802215576, "additive": 7.2155232429504395, "britney": 9.836966514587402, "adultery": 9.824347496032715, "triggering": 8.670843124389648, "##drome": 10.004790306091309, "detrimental": 8.611946105957031, "aarhus": 12.015321731567383, "containment": 9.017255783081055, "jc": 8.322478294372559, "swapped": 9.86052131652832, "vichy": 11.115997314453125, "##ioms": 8.703688621520996, "madly": 11.014827728271484, "##oric": 7.368866443634033, "##rag": 7.026543617248535, "brant": 9.753753662109375, "##ckey": 10.019922256469727, "##trix": 9.397175788879395, "1560": 9.856197357177734, "1612": 10.567853927612305, "broughton": 11.365140914916992, "rustling": 11.326858520507812, "##stems": 12.053421974182129, "##uder": 9.497474670410156, "asbestos": 8.25021743774414, "mentoring": 9.354474067687988, "##nivorous": 8.37014102935791, "finley": 10.443984031677246, "leaps": 9.706216812133789, "##isan": 8.62257194519043, "apical": 9.084752082824707, "pry": 8.499184608459473, "slits": 9.350563049316406, "substitutes": 8.268129348754883, "##dict": 7.471927642822266, "intuitive": 7.995157241821289, "fantasia": 10.659872055053711, "insistent": 11.021724700927734, "unreasonable": 8.95228099822998, "##igen": 7.693854331970215, "##vna": 10.118669509887695, "domed": 9.923111915588379, "hannover": 11.28998851776123, "margot": 9.977627754211426, "ponder": 9.044668197631836, "##zziness": 6.660015106201172, "impromptu": 10.260046005249023, "jian": 10.961302757263184, "lc": 7.685450077056885, "rampage": 9.984962463378906, "stemming": 9.293657302856445, "##eft": 8.42430305480957, "andrey": 11.394845962524414, "gerais": 11.384845733642578, "whichever": 7.494041442871094, "amnesia": 9.282655715942383, "appropriated": 9.820176124572754, "anzac": 9.81188678741455, "clicks": 8.390856742858887, "modifying": 8.396353721618652, "ultimatum": 10.67443561553955, "cambrian": 9.575823783874512, "maids": 9.702508926391602, "verve": 10.750615119934082, "yellowstone": 8.456774711608887, "##mbs": 9.532754898071289, "conservatoire": 12.344346046447754, "##scribe": 6.332219123840332, "adherence": 8.894564628601074, "dinners": 9.067935943603516, "spectra": 9.2838716506958, "imperfect": 8.353679656982422, "mysteriously": 10.152910232543945, "sidekick": 9.412286758422852, "tatar": 10.799272537231445, "tuba": 8.988761901855469, "##aks": 8.55573844909668, "##ifolia": 9.902563095092773, "distrust": 9.880215644836426, "##athan": 10.014852523803711, "##zle": 7.8078436851501465, "c2": 8.076921463012695, "ronin": 11.925976753234863, "zac": 9.332509994506836, "##pse": 7.843814373016357, "celaena": 13.743711471557617, "instrumentalist": 9.875805854797363, "scents": 9.087748527526855, "skopje": 11.684205055236816, "##mbling": 10.26978588104248, "comical": 9.932381629943848, "compensated": 8.448821067810059, "vidal": 10.17343807220459, "condor": 10.004790306091309, "intersect": 8.71948528289795, "jingle": 9.944091796875, "wavelengths": 8.13231372833252, "##urrent": 7.661853790283203, "mcqueen": 9.891326904296875, "##izzly": 8.886350631713867, "carp": 7.212143898010254, "weasel": 9.167916297912598, "422": 8.599589347839355, "kanye": 9.242149353027344, "militias": 10.689214706420898, "postdoctoral": 10.475544929504395, "eugen": 9.279014587402344, "gunslinger": 10.87402057647705, "##\u025b": 7.6763834953308105, "faux": 8.927257537841797, "hospice": 8.107982635498047, "##for": 6.302762031555176, "appalled": 10.827364921569824, "derivation": 8.26636791229248, "dwarves": 10.313125610351562, "##elis": 10.838826179504395, "dilapidated": 10.91049861907959, "##folk": 10.799272537231445, "astoria": 9.632838249206543, "philology": 11.81295394897461, "##lwyn": 11.711417198181152, "##otho": 8.90201473236084, "##saka": 10.935578346252441, "inducing": 8.6975736618042, "philanthropy": 9.724961280822754, "##bf": 9.147529602050781, "##itative": 9.667960166931152, "geek": 8.512603759765625, "markedly": 8.94444751739502, "sql": 7.111016750335693, "##yce": 8.570540428161621, "bessie": 10.313125610351562, "indices": 8.608222961425781, "rn": 6.970932960510254, "##flict": 7.975555419921875, "495": 8.605131149291992, "frowns": 11.925976753234863, "resolving": 8.795699119567871, "weightlifting": 9.90030574798584, "tugs": 11.021724700927734, "cleric": 10.27633285522461, "contentious": 9.467777252197266, "1653": 10.740116119384766, "mania": 8.33701229095459, "rms": 8.81607723236084, "##miya": 10.904325485229492, "##reate": 8.847050666809082, "##ruck": 10.838826179504395, "##tucket": 9.567707061767578, "bien": 9.420625686645508, "eels": 9.90030574798584, "marek": 11.131322860717773, "##ayton": 10.636061668395996, "##cence": 8.955781936645508, "discreet": 9.415058135986328, "unofficially": 9.873607635498047, "##ife": 8.530780792236328, "leaks": 7.586398601531982, "##bber": 8.853363037109375, "1705": 10.504002571105957, "332": 8.533650398254395, "dung": 9.264582633972168, "compressor": 7.834628105163574, "hillsborough": 9.222496032714844, "pandit": 11.684205055236816, "shillings": 10.17343807220459, "distal": 7.65085506439209, "##skin": 8.561633110046387, "381": 8.676795959472656, "##tat": 7.254746913909912, "##you": 8.148609161376953, "nosed": 9.434680938720703, "##nir": 10.118669509887695, "mangrove": 9.2838716506958, "undeveloped": 9.577454566955566, "##idia": 9.415058135986328, "textures": 8.398360252380371, "##inho": 11.064133644104004, "##500": 8.44197940826416, "##rise": 8.730623245239258, "ae": 6.554067611694336, "irritating": 8.217840194702148, "nay": 9.016324043273926, "amazingly": 8.92385482788086, "bancroft": 10.479560852050781, "apologetic": 10.804828643798828, "compassionate": 8.722258567810059, "kata": 8.89209270477295, "symphonies": 10.3407621383667, "##lovic": 11.355432510375977, "airspace": 9.625959396362305, "##lch": 7.2754411697387695, "930": 8.374053955078125, "gifford": 9.845467567443848, "precautions": 7.682745933532715, "fulfillment": 8.489786148071289, "sevilla": 10.745351791381836, "vulgar": 8.190140724182129, "martinique": 10.273054122924805, "##urities": 8.157647132873535, "looting": 11.001175880432129, "piccolo": 10.309724807739258, "tidy": 9.362343788146973, "##dermott": 10.296234130859375, "quadrant": 8.3943510055542, "armchair": 10.590076446533203, "incomes": 7.89469051361084, "mathematicians": 9.687816619873047, "stampede": 10.1853609085083, "nilsson": 10.740116119384766, "##inking": 10.89819049835205, "##scan": 8.858122825622559, "foo": 9.394453048706055, "quarterfinal": 11.725306510925293, "##ostal": 10.689214706420898, "shang": 9.345372200012207, "shouldered": 11.326858520507812, "squirrels": 8.23389720916748, "##owe": 8.449878692626953, "344": 8.587989807128906, "vinegar": 6.46319580078125, "##bner": 10.724571228027344, "##rchy": 9.759613037109375, "##systems": 9.211112022399902, "delaying": 9.29858684539795, "##trics": 8.635854721069336, "ars": 8.507550239562988, "dwyer": 10.941947937011719, "rhapsody": 10.546113967895508, "sponsoring": 9.367624282836914, "##gration": 9.350563049316406, "bipolar": 7.464203834533691, "cinder": 9.20209789276123, "starters": 8.485942840576172, "##olio": 8.742595672607422, "##urst": 9.795509338378906, "421": 8.65774154663086, "signage": 9.376932144165039, "##nty": 9.795509338378906, "aground": 10.810415267944336, "figurative": 8.182019233703613, "mons": 8.786033630371094, "acquaintances": 10.104742050170898, "duets": 10.856268882751465, "erroneously": 9.572568893432617, "soyuz": 11.178762435913086, "elliptic": 10.941947937011719, "recreated": 10.1853609085083, "##cultural": 9.63111400604248, "##quette": 9.593915939331055, "##ssed": 10.01738452911377, "##tma": 9.488472938537598, "##zcz": 11.021724700927734, "moderator": 8.847050666809082, "scares": 10.2313814163208, "##itaire": 9.734466552734375, "##stones": 8.043268203735352, "##udence": 9.980066299438477, "juniper": 8.907848358154297, "sighting": 8.883084297180176, "##just": 8.466403007507324, "##nsen": 10.313125610351562, "britten": 11.446404457092285, "calabria": 10.417162895202637, "ry": 7.639271259307861, "bop": 9.316032409667969, "cramer": 10.487641334533691, "forsyth": 9.542166709899902, "stillness": 10.967839241027832, "##\u043b": 9.333788871765137, "airmen": 9.399906158447266, "gathers": 9.045626640319824, "unfit": 9.50503921508789, "##umber": 9.212244987487793, "##upt": 7.444665908813477, "taunting": 10.892093658447266, "##rip": 7.658733367919922, "seeker": 9.528081893920898, "streamlined": 8.882268905639648, "##bution": 8.671503067016602, "holster": 10.292889595031738, "schumann": 11.071379661560059, "tread": 7.3173089027404785, "vox": 9.93005657196045, "##gano": 7.992142200469971, "##onzo": 10.72972583770752, "strive": 7.514370918273926, "dil": 6.073995590209961, "reforming": 10.182367324829102, "covent": 11.263200759887695, "newbury": 10.191375732421875, "predicting": 8.68746566772461, "##orro": 10.17343807220459, "decorate": 8.728525161743164, "tre": 7.000396728515625, "##puted": 9.466315269470215, "andover": 10.132794380187988, "ie": 6.522107124328613, "asahi": 11.435877799987793, "dept": 8.287266731262207, "dunkirk": 9.783400535583496, "gills": 8.709839820861816, "##tori": 8.067499160766602, "buren": 9.397175788879395, "huskies": 9.934713363647461, "##stis": 9.51113224029541, "##stov": 11.768170356750488, "abstracts": 9.805713653564453, "bets": 9.108983039855957, "loosen": 7.560865879058838, "##opa": 6.190866947174072, "1682": 10.333781242370605, "yearning": 10.306334495544434, "##glio": 10.289556503295898, "##sir": 10.2408447265625, "berman": 10.155817031860352, "effortlessly": 9.467777252197266, "enamel": 7.97852087020874, "napoli": 10.546113967895508, "persist": 7.367432594299316, "##peration": 11.035661697387695, "##uez": 10.516449928283691, "attache": 7.582171440124512, "elisa": 9.29858684539795, "b1": 6.972982883453369, "invitations": 8.647381782531738, "##kic": 9.920807838439941, "accelerating": 8.965473175048828, "reindeer": 9.634565353393555, "boardwalk": 8.904510498046875, "clutches": 9.73637866973877, "nelly": 10.572258949279785, "polka": 9.732558250427246, "starbucks": 8.101991653442383, "##kei": 10.069412231445312, "adamant": 9.777400016784668, "huey": 10.061432838439941, "lough": 9.953558921813965, "unbroken": 9.587299346923828, "adventurer": 9.3518648147583, "embroidery": 9.163589477539062, "inspecting": 9.518800735473633, "stanza": 9.15499210357666, "##ducted": 7.8656816482543945, "naia": 10.244019508361816, "taluka": 12.425471305847168, "##pone": 8.3257417678833, "##roids": 7.639036178588867, "chases": 10.398435592651367, "deprivation": 8.510915756225586, "florian": 11.308253288269043, "##jing": 10.967839241027832, "##ppet": 8.526776313781738, "earthly": 9.801619529724121, "##lib": 8.530780792236328, "##ssee": 9.056234359741211, "colossal": 9.277803421020508, "foreigner": 9.864864349365234, "vet": 6.293785095214844, "freaks": 10.436246871948242, "patrice": 10.77735424041748, "rosewood": 9.93005657196045, "triassic": 9.542166709899902, "upstate": 9.06695556640625, "##pkins": 10.237680435180664, "dominates": 9.183208465576172, "ata": 7.680539131164551, "chants": 10.491706848144531, "ks": 7.6454010009765625, "vo": 6.414238452911377, "##400": 8.583749771118164, "##bley": 10.52905559539795, "##raya": 10.417162895202637, "##rmed": 11.909027099609375, "555": 8.415069580078125, "agra": 9.21337890625, "infiltrate": 9.111028671264648, "##ailing": 10.766572952270508, "##ilation": 8.998780250549316, "##tzer": 10.57668399810791, "##uppe": 10.292889595031738, "##werk": 9.867043495178223, "binoculars": 9.937049865722656, "enthusiast": 8.870927810668945, "fujian": 11.115997314453125, "squeak": 9.163589477539062, "##avs": 10.188364028930664, "abolitionist": 8.975259780883789, "almeida": 11.47866439819336, "boredom": 9.523430824279785, "hampstead": 11.064133644104004, "marsden": 10.793747901916504, "rations": 10.064085960388184, "##ands": 9.485489845275879, "inflated": 8.86450481414795, "334": 8.486491203308105, "bonuses": 7.371021270751953, "rosalie": 10.755906105041504, "patna": 11.100902557373047, "##rco": 7.345292091369629, "329": 8.691496849060059, "detachments": 10.850419998168945, "penitentiary": 9.805713653564453, "54th": 10.479560852050781, "flourishing": 9.695136070251465, "woolf": 10.383702278137207, "##dion": 10.67443561553955, "##etched": 10.333781242370605, "papyrus": 9.600577354431152, "##lster": 9.096794128417969, "##nsor": 9.004286766052246, "##toy": 9.66439151763916, "bobbed": 11.644725799560547, "dismounted": 11.87596607208252, "endelle": 1.0, "inhuman": 9.79145622253418, "motorola": 8.912875175476074, "tbs": 7.4080047607421875, "wince": 11.228565216064453, "wreath": 9.362343788146973, "##ticus": 9.713671684265137, "hideout": 10.541821479797363, "inspections": 8.177177429199219, "sanjay": 10.617413520812988, "disgrace": 9.484002113342285, "infused": 8.491438865661621, "pudding": 8.312291145324707, "stalks": 8.402385711669922, "##urbed": 9.40952205657959, "arsenic": 8.624458312988281, "leases": 8.406427383422852, "##hyl": 6.459071636199951, "##rrard": 10.862151145935059, "collarbone": 9.145407676696777, "##waite": 10.504002571105957, "##wil": 8.21407413482666, "dowry": 11.108421325683594, "##bant": 10.612804412841797, "##edance": 9.0610933303833, "genealogical": 9.209980964660645, "nitrate": 7.801465034484863, "salamanca": 10.766572952270508, "scandals": 9.880215644836426, "thyroid": 6.180975914001465, "necessitated": 10.880008697509766, "##!": 1.0, "##\"": 1.0, "###": 1.0, "##$": 1.0, "##%": 1.0, "##&": 1.0, "##'": 1.0, "##(": 1.0, "##)": 1.0, "##*": 1.0, "##+": 1.0, "##,": 1.0, "##-": 1.0, "##.": 1.0, "##/": 1.0, "##:": 1.0, "##;": 1.0, "##<": 1.0, "##=": 1.0, "##>": 1.0, "##?": 1.0, "##@": 1.0, "##[": 1.0, "##\\": 1.0, "##]": 1.0, "##^": 1.0, "##_": 1.0, "##`": 1.0, "##{": 1.0, "##|": 1.0, "##}": 1.0, "##~": 1.0, "##\u00a1": 1.0, "##\u00a2": 8.826038360595703, "##\u00a3": 10.631366729736328, "##\u00a4": 11.753677368164062, "##\u00a5": 12.199514389038086, "##\u00a6": 11.245733261108398, "##\u00a7": 1.0, "##\u00a8": 11.374944686889648, "##\u00a9": 9.51726245880127, "##\u00aa": 12.717859268188477, "##\u00ab": 1.0, "##\u00ac": 11.299078941345215, "##\u00ae": 5.282643795013428, "##\u00b1": 9.898054122924805, "##\u00b4": 8.241595268249512, "##\u00b5": 10.559101104736328, "##\u00b6": 1.0, "##\u00b7": 1.0, "##\u00ba": 7.8787360191345215, "##\u00bb": 1.0, "##\u00bc": 9.90030574798584, "##\u00be": 10.650279998779297, "##\u00bf": 1.0, "##\u00e6": 7.324488639831543, "##\u00f0": 9.209980964660645, "##\u00f7": 11.725306510925293, "##\u00fe": 10.78278923034668, "##\u0111": 12.293702125549316, "##\u0127": 12.318702697753906, "##\u014b": 8.774264335632324, "##\u0153": 10.10197925567627, "##\u0192": 12.513763427734375, "##\u0250": 9.813952445983887, "##\u0251": 8.000539779663086, "##\u0252": 8.244604110717773, "##\u0254": 8.23389720916748, "##\u0255": 11.272050857543945, "##\u0259": 6.299124717712402, "##\u0261": 8.466940879821777, "##\u0263": 10.856268882751465, "##\u0268": 9.116162300109863, "##\u026a": 6.696698188781738, "##\u026b": 11.684205055236816, "##\u026c": 11.711417198181152, "##\u026f": 12.577277183532715, "##\u0272": 10.961302757263184, "##\u0274": 12.545016288757324, "##\u0279": 11.768170356750488, "##\u027e": 9.56609058380127, "##\u0280": 12.073030471801758, "##\u0281": 9.380949020385742, "##\u0282": 12.09303092956543, "##\u0283": 8.271662712097168, "##\u0289": 11.828338623046875, "##\u028a": 7.566969871520996, "##\u028b": 11.81295394897461, "##\u028c": 9.007051467895508, "##\u028e": 11.670870780944824, "##\u0290": 14.742240905761719, "##\u0291": 12.483458518981934, "##\u0292": 8.572929382324219, "##\u0294": 10.793747901916504, "##\u02b0": 10.306334495544434, "##\u02b2": 10.447875022888184, "##\u02b3": 10.844606399536133, "##\u02b7": 11.606746673583984, "##\u02b8": 15.58953857421875, "##\u02bb": 10.313125610351562, "##\u02bc": 10.766572952270508, "##\u02be": 11.768170356750488, "##\u02bf": 11.211687088012695, "##\u02c8": 6.81941032409668, "##\u02e1": 15.58953857421875, "##\u02e2": 14.490926742553711, "##\u02e3": 15.078713417053223, "##\u02e4": 11.996803283691406, "##\u03b2": 9.232852935791016, "##\u03b3": 8.920463562011719, "##\u03b4": 9.096794128417969, "##\u03b5": 8.05852222442627, "##\u03b6": 11.272050857543945, "##\u03b8": 8.68411922454834, "##\u03ba": 8.64609432220459, "##\u03bb": 8.353679656982422, "##\u03bc": 8.509231567382812, "##\u03be": 10.040462493896484, "##\u03bf": 8.00256633758545, "##\u03c0": 8.77353286743164, "##\u03c1": 7.894994258880615, "##\u03c3": 8.616308212280273, "##\u03c4": 8.312291145324707, "##\u03c5": 8.484847068786621, "##\u03c6": 9.56609058380127, "##\u03c7": 9.927736282348633, "##\u03c8": 11.336292266845703, "##\u03c9": 8.498628616333008, "##\u0431": 10.222005844116211, "##\u0433": 10.132794380187988, "##\u0434": 9.847604751586914, "##\u0436": 11.237112998962402, "##\u0437": 10.420949935913086, "##\u043c": 9.911643981933594, "##\u043f": 10.369182586669922, "##\u0441": 9.307271957397461, "##\u0443": 9.520341873168945, "##\u0444": 11.739391326904297, "##\u0445": 11.245733261108398, "##\u0446": 10.856268882751465, "##\u0447": 10.810415267944336, "##\u0448": 10.83307933807373, "##\u0449": 11.943219184875488, "##\u044a": 11.457042694091797, "##\u044d": 12.245499610900879, "##\u044e": 11.87596607208252, "##\u0452": 13.392313957214355, "##\u0454": 13.07723331451416, "##\u0456": 11.446404457092285, "##\u0458": 12.483458518981934, "##\u0459": 14.123201370239258, "##\u045a": 13.980100631713867, "##\u045b": 13.024589538574219, "##\u04cf": 14.742240905761719, "##\u0561": 11.925976753234863, "##\u0562": 15.58953857421875, "##\u0563": 13.552656173706055, "##\u0564": 14.123201370239258, "##\u0565": 12.344346046447754, "##\u0569": 14.490926742553711, "##\u056b": 12.838003158569336, "##\u056c": 13.552656173706055, "##\u056f": 13.643628120422363, "##\u0570": 14.123201370239258, "##\u0574": 12.974578857421875, "##\u0575": 12.610613822937012, "##\u0576": 12.269309997558594, "##\u0578": 12.717859268188477, "##\u057a": 14.290255546569824, "##\u057d": 12.717859268188477, "##\u057e": 14.123201370239258, "##\u057f": 13.07723331451416, "##\u0580": 12.22224235534668, "##\u0582": 13.132802963256836, "##\u0584": 13.980100631713867, "##\u05be": 1.0, "##\u05d0": 9.963117599487305, "##\u05d1": 9.958327293395996, "##\u05d2": 11.644725799560547, "##\u05d3": 10.413389205932617, "##\u05d5": 9.308518409729004, "##\u05d6": 11.570157051086426, "##\u05d7": 10.750615119934082, "##\u05d8": 11.326858520507812, "##\u05d9": 9.211112022399902, "##\u05da": 12.293702125549316, "##\u05db": 11.308253288269043, "##\u05dc": 9.70993709564209, "##\u05dd": 10.451781272888184, "##\u05de": 10.26978588104248, "##\u05df": 10.266529083251953, "##\u05e0": 10.2536039352417, "##\u05e1": 11.211687088012695, "##\u05e2": 10.35487174987793, "##\u05e3": 12.717859268188477, "##\u05e4": 11.071379661560059, "##\u05e5": 12.610613822937012, "##\u05e6": 11.644725799560547, "##\u05e7": 10.816033363342285, "##\u05e8": 9.460488319396973, "##\u05e9": 10.191375732421875, "##\u05ea": 10.085562705993652, "##\u060c": 1.0, "##\u0621": 11.384845733642578, "##\u0628": 9.265777587890625, "##\u062a": 9.951184272766113, "##\u062b": 12.13427448272705, "##\u062c": 10.365585327148438, "##\u062d": 10.127120018005371, "##\u062e": 11.14688777923584, "##\u0630": 12.318702697753906, "##\u0632": 10.499886512756348, "##\u0633": 9.50503921508789, "##\u0634": 10.4058837890625, "##\u0635": 10.659872055053711, "##\u0636": 11.336292266845703, "##\u0637": 10.684264183044434, "##\u0638": 11.753677368164062, "##\u0639": 9.951184272766113, "##\u063a": 11.425460815429688, "##\u0640": 12.073030471801758, "##\u0641": 10.121478080749512, "##\u0642": 10.077454566955566, "##\u0643": 10.402153015136719, "##\u0648": 9.089751243591309, "##\u0649": 11.355432510375977, "##\u0679": 12.318702697753906, "##\u067e": 12.15555191040039, "##\u0686": 12.483458518981934, "##\u06a9": 11.001175880432129, "##\u06af": 11.546487808227539, "##\u06ba": 12.318702697753906, "##\u06be": 11.684205055236816, "##\u06c1": 11.100902557373047, "##\u06d2": 11.859837532043457, "##\u0905": 1.0, "##\u0906": 13.643628120422363, "##\u0909": 15.078713417053223, "##\u090f": 13.392313957214355, "##\u0915": 10.376416206359863, "##\u0916": 12.370662689208984, "##\u0917": 10.413389205932617, "##\u091a": 11.996803283691406, "##\u091c": 11.086031913757324, "##\u091f": 11.797801971435547, "##\u0921": 11.546487808227539, "##\u0923": 11.263200759887695, "##\u0924": 9.744063377380371, "##\u0925": 11.943219184875488, "##\u0926": 9.86052131652832, "##\u0927": 11.711417198181152, "##\u0928": 9.856197357177734, "##\u092a": 11.384845733642578, "##\u092c": 10.209641456604004, "##\u092d": 12.344346046447754, "##\u092e": 10.581128120422363, "##\u092f": 10.563467979431152, "##\u0930": 9.639764785766602, "##\u0932": 9.745994567871094, "##\u0935": 10.821682929992676, "##\u0936": 11.25442886352539, "##\u0937": 11.203353881835938, "##\u0938": 10.827364921569824, "##\u0939": 11.308253288269043, "##\u093e": 9.123394012451172, "##\u093f": 9.4795503616333, "##\u0940": 9.556452751159668, "##\u094b": 10.827364921569824, "##\u0964": 1.0, "##\u0965": 1.0, "##\u0982": 13.024589538574219, "##\u0985": 15.58953857421875, "##\u0986": 1.0, "##\u0987": 14.742240905761719, "##\u0989": 15.078713417053223, "##\u098f": 1.0, "##\u0993": 14.490926742553711, "##\u0995": 12.245499610900879, "##\u0996": 15.078713417053223, "##\u0997": 14.742240905761719, "##\u099a": 14.742240905761719, "##\u099b": 15.078713417053223, "##\u099c": 12.974578857421875, "##\u099f": 13.743711471557617, "##\u09a1": 13.643628120422363, "##\u09a3": 13.743711471557617, "##\u09a4": 12.513763427734375, "##\u09a5": 14.290255546569824, "##\u09a6": 12.610613822937012, "##\u09a7": 13.743711471557617, "##\u09a8": 11.960762977600098, "##\u09aa": 12.974578857421875, "##\u09ac": 12.881488800048828, "##\u09ad": 14.490926742553711, "##\u09ae": 13.320855140686035, "##\u09af": 12.370662689208984, "##\u09b0": 11.978620529174805, "##\u09b2": 11.87596607208252, "##\u09b6": 12.39769172668457, "##\u09b7": 13.743711471557617, "##\u09b8": 12.881488800048828, "##\u09b9": 13.191643714904785, "##\u09be": 11.064133644104004, "##\u09bf": 11.619246482849121, "##\u09c0": 12.293702125549316, "##\u09c7": 12.177291870117188, "##\u0b95": 12.370662689208984, "##\u0b9a": 13.07723331451416, "##\u0b9f": 12.425471305847168, "##\u0ba4": 12.425471305847168, "##\u0ba8": 13.392313957214355, "##\u0ba9": 13.25416374206543, "##\u0baa": 12.881488800048828, "##\u0bae": 12.545016288757324, "##\u0baf": 13.320855140686035, "##\u0bb0": 12.318702697753906, "##\u0bb2": 12.545016288757324, "##\u0bb3": 13.320855140686035, "##\u0bb5": 12.545016288757324, "##\u0bbe": 12.13427448272705, "##\u0bbf": 11.89236068725586, "##\u0bc1": 11.996803283691406, "##\u0bc7": 13.132802963256836, "##\u0bc8": 12.370662689208984, "##\u0ca8": 1.0, "##\u0cb0": 1.0, "##\u0cbe": 1.0, "##\u0d9a": 1.0, "##\u0dba": 1.0, "##\u0dbb": 15.58953857421875, "##\u0dbd": 1.0, "##\u0dc0": 1.0, "##\u0dcf": 15.58953857421875, "##\u0e01": 13.643628120422363, "##\u0e07": 13.191643714904785, "##\u0e15": 13.854937553405762, "##\u0e17": 13.743711471557617, "##\u0e19": 12.610613822937012, "##\u0e1e": 14.742240905761719, "##\u0e21": 13.320855140686035, "##\u0e22": 13.191643714904785, "##\u0e23": 13.191643714904785, "##\u0e25": 14.123201370239258, "##\u0e27": 14.290255546569824, "##\u0e2a": 13.980100631713867, "##\u0e2d": 13.392313957214355, "##\u0e32": 12.483458518981934, "##\u0e40": 13.980100631713867, "##\u0f0b": 1.0, "##\u0f0d": 1.0, "##\u0f42": 13.643628120422363, "##\u0f44": 14.290255546569824, "##\u0f51": 13.980100631713867, "##\u0f53": 13.980100631713867, "##\u0f54": 1.0, "##\u0f56": 13.980100631713867, "##\u0f58": 1.0, "##\u0f60": 1.0, "##\u0f62": 14.290255546569824, "##\u0f63": 13.980100631713867, "##\u0f66": 14.490926742553711, "##\u1019": 1.0, "##\u10d0": 12.796330451965332, "##\u10d1": 13.552656173706055, "##\u10d2": 15.58953857421875, "##\u10d3": 14.490926742553711, "##\u10d4": 13.25416374206543, "##\u10d5": 14.490926742553711, "##\u10d7": 14.123201370239258, "##\u10d8": 12.610613822937012, "##\u10d9": 14.742240905761719, "##\u10da": 13.07723331451416, "##\u10db": 14.490926742553711, "##\u10dc": 13.191643714904785, "##\u10dd": 14.123201370239258, "##\u10e0": 13.320855140686035, "##\u10e1": 13.392313957214355, "##\u10e2": 13.980100631713867, "##\u10e3": 13.552656173706055, "##\u1100": 10.2313814163208, "##\u1102": 11.064133644104004, "##\u1103": 10.904325485229492, "##\u1105": 10.838826179504395, "##\u1106": 10.904325485229492, "##\u1107": 11.374944686889648, "##\u1109": 10.33030891418457, "##\u110a": 13.46927547454834, "##\u110b": 10.132794380187988, "##\u110c": 10.679337501525879, "##\u110e": 11.711417198181152, "##\u110f": 12.22224235534668, "##\u1110": 11.211687088012695, "##\u1111": 12.318702697753906, "##\u1112": 10.974417686462402, "##\u1161": 9.58072566986084, "##\u1162": 10.69419002532959, "##\u1165": 10.06674575805664, "##\u1166": 11.203353881835938, "##\u1167": 10.750615119934082, "##\u1169": 10.135643005371094, "##\u116a": 11.978620529174805, "##\u116d": 12.034191131591797, "##\u116e": 10.012328147888184, "##\u116f": 12.370662689208984, "##\u1172": 12.425471305847168, "##\u1173": 10.689214706420898, "##\u1174": 12.483458518981934, "##\u1175": 9.875805854797363, "##\u11a8": 10.203516006469727, "##\u11ab": 9.67333698272705, "##\u11af": 10.689214706420898, "##\u11b7": 10.868067741394043, "##\u11b8": 11.828338623046875, "##\u11bc": 10.06674575805664, "##\u1d2c": 1.0, "##\u1d2e": 1.0, "##\u1d30": 1.0, "##\u1d35": 1.0, "##\u1d3a": 1.0, "##\u1d40": 1.0, "##\u1d43": 15.078713417053223, "##\u1d47": 1.0, "##\u1d48": 14.490926742553711, "##\u1d49": 14.742240905761719, "##\u1d4d": 1.0, "##\u1d4f": 1.0, "##\u1d50": 1.0, "##\u1d52": 14.290255546569824, "##\u1d56": 15.58953857421875, "##\u1d57": 13.643628120422363, "##\u1d58": 15.58953857421875, "##\u1d63": 1.0, "##\u1d64": 1.0, "##\u1d65": 1.0, "##\u1d9c": 1.0, "##\u1da0": 1.0, "##\u2010": 1.0, "##\u2011": 1.0, "##\u2012": 1.0, "##\u2013": 1.0, "##\u2014": 1.0, "##\u2015": 1.0, "##\u2016": 1.0, "##\u2018": 1.0, "##\u2019": 1.0, "##\u201a": 1.0, "##\u201c": 1.0, "##\u201d": 1.0, "##\u201e": 1.0, "##\u2020": 1.0, "##\u2021": 1.0, "##\u2022": 1.0, "##\u2026": 1.0, "##\u2030": 1.0, "##\u2032": 1.0, "##\u2033": 1.0, "##\u203a": 1.0, "##\u203f": 1.0, "##\u2044": 8.748279571533203, "##\u2070": 11.425460815429688, "##\u2071": 13.743711471557617, "##\u2074": 13.320855140686035, "##\u2075": 14.123201370239258, "##\u2076": 13.024589538574219, "##\u2077": 13.980100631713867, "##\u2078": 14.490926742553711, "##\u2079": 13.46927547454834, "##\u207b": 12.22224235534668, "##\u207f": 12.838003158569336, "##\u2085": 13.392313957214355, "##\u2086": 12.756325721740723, "##\u2087": 14.290255546569824, "##\u2088": 15.58953857421875, "##\u2089": 1.0, "##\u208a": 1.0, "##\u208d": 1.0, "##\u208e": 1.0, "##\u2090": 1.0, "##\u2091": 1.0, "##\u2092": 1.0, "##\u2093": 1.0, "##\u2095": 1.0, "##\u2096": 1.0, "##\u2097": 1.0, "##\u2098": 1.0, "##\u209a": 1.0, "##\u209b": 1.0, "##\u209c": 1.0, "##\u20a4": 1.0, "##\u20a9": 1.0, "##\u20ac": 8.862107276916504, "##\u20b1": 1.0, "##\u20b9": 15.078713417053223, "##\u2113": 13.132802963256836, "##\u2116": 1.0, "##\u211d": 14.290255546569824, "##\u2122": 6.421514511108398, "##\u2153": 12.717859268188477, "##\u2154": 13.743711471557617, "##\u2190": 13.743711471557617, "##\u2191": 12.881488800048828, "##\u2192": 9.923111915588379, "##\u2193": 12.796330451965332, "##\u2194": 12.483458518981934, "##\u21a6": 1.0, "##\u21c4": 1.0, "##\u21cc": 14.742240905761719, "##\u21d2": 12.483458518981934, "##\u2202": 13.392313957214355, "##\u2205": 15.078713417053223, "##\u2206": 12.39769172668457, "##\u2207": 14.123201370239258, "##\u2208": 12.645099639892578, "##\u2217": 12.015321731567383, "##\u2218": 13.392313957214355, "##\u221a": 11.365140914916992, "##\u221e": 11.797801971435547, "##\u2227": 14.742240905761719, "##\u2228": 14.742240905761719, "##\u2229": 14.742240905761719, "##\u222a": 14.742240905761719, "##\u2248": 12.881488800048828, "##\u2261": 12.113439559936523, "##\u2264": 12.09303092956543, "##\u2265": 12.756325721740723, "##\u2282": 15.58953857421875, "##\u2286": 13.854937553405762, "##\u2295": 13.743711471557617, "##\u2297": 1.0, "##\u22c5": 10.750615119934082, "##\u2500": 11.042703628540039, "##\u2502": 13.643628120422363, "##\u25a0": 11.684205055236816, "##\u25aa": 15.58953857421875, "##\u25cf": 12.245499610900879, "##\u2605": 10.417162895202637, "##\u2606": 12.293702125549316, "##\u2609": 12.454044342041016, "##\u2660": 9.655527114868164, "##\u2663": 13.07723331451416, "##\u2665": 11.13907527923584, "##\u2666": 11.558252334594727, "##\u266f": 12.22224235534668, "##\u27e8": 1.0, "##\u27e9": 1.0, "##\u2c7c": 1.0, "##\u2ea9": 1.0, "##\u2ebc": 1.0, "##\u2f65": 1.0, "##\u3001": 1.0, "##\u3002": 1.0, "##\u3008": 1.0, "##\u3009": 1.0, "##\u300a": 1.0, "##\u300b": 1.0, "##\u300c": 1.0, "##\u300d": 1.0, "##\u300e": 1.0, "##\u300f": 1.0, "##\u301c": 1.0, "##\u3042": 12.645099639892578, "##\u3044": 11.071379661560059, "##\u3046": 11.534859657287598, "##\u3048": 13.25416374206543, "##\u304a": 12.269309997558594, "##\u304b": 11.25442886352539, "##\u304d": 11.425460815429688, "##\u304f": 11.47866439819336, "##\u3051": 12.756325721740723, "##\u3053": 12.034191131591797, "##\u3055": 12.034191131591797, "##\u3057": 11.263200759887695, "##\u3059": 11.228565216064453, "##\u305b": 13.320855140686035, "##\u305d": 12.717859268188477, "##\u305f": 11.272050857543945, "##\u3061": 11.843963623046875, "##\u3063": 12.22224235534668, "##\u3064": 11.753677368164062, "##\u3066": 11.435877799987793, "##\u3068": 11.415151596069336, "##\u306a": 11.582205772399902, "##\u306b": 12.344346046447754, "##\u306c": 14.742240905761719, "##\u306d": 13.320855140686035, "##\u306e": 11.021724700927734, "##\u306f": 11.14688777923584, "##\u3072": 12.483458518981934, "##\u3075": 13.07723331451416, "##\u3078": 13.643628120422363, "##\u307b": 13.07723331451416, "##\u307e": 11.272050857543945, "##\u307f": 12.577277183532715, "##\u3080": 13.854937553405762, "##\u3081": 12.344346046447754, "##\u3082": 12.13427448272705, "##\u3084": 13.07723331451416, "##\u3086": 13.643628120422363, "##\u3088": 12.483458518981934, "##\u3089": 11.606746673583984, "##\u308a": 11.606746673583984, "##\u308b": 11.512001037597656, "##\u308c": 12.177291870117188, "##\u308d": 12.454044342041016, "##\u3092": 12.974578857421875, "##\u3093": 10.961302757263184, "##\u30a1": 11.753677368164062, "##\u30a2": 10.72972583770752, "##\u30a3": 10.929248809814453, "##\u30a4": 9.904826164245605, "##\u30a6": 11.007978439331055, "##\u30a7": 11.512001037597656, "##\u30a8": 12.15555191040039, "##\u30aa": 11.365140914916992, "##\u30ab": 10.475544929504395, "##\u30ad": 10.590076446533203, "##\u30af": 9.963117599487305, "##\u30b1": 11.317512512207031, "##\u30b3": 10.745351791381836, "##\u30b5": 11.162697792053223, "##\u30b7": 10.158732414245605, "##\u30b9": 9.801619529724121, "##\u30bb": 12.318702697753906, "##\u30bf": 10.037872314453125, "##\u30c1": 11.211687088012695, "##\u30c3": 10.05614948272705, "##\u30c4": 11.394845962524414, "##\u30c6": 10.750615119934082, "##\u30c8": 9.582365036010742, "##\u30ca": 11.228565216064453, "##\u30cb": 11.308253288269043, "##\u30ce": 11.81295394897461, "##\u30cf": 10.67443561553955, "##\u30d2": 11.042703628540039, "##\u30d5": 10.279622077941895, "##\u30d8": 12.053421974182129, "##\u30db": 10.892093658447266, "##\u30de": 10.935578346252441, "##\u30df": 11.828338623046875, "##\u30e0": 11.056939125061035, "##\u30e1": 11.670870780944824, "##\u30e2": 11.534859657287598, "##\u30e3": 11.093440055847168, "##\u30e5": 11.131322860717773, "##\u30e7": 11.570157051086426, "##\u30e9": 10.040462493896484, "##\u30ea": 10.127120018005371, "##\u30eb": 9.745994567871094, "##\u30ec": 11.035661697387695, "##\u30ed": 10.755906105041504, "##\u30ef": 12.22224235534668, "##\u30f3": 9.387678146362305, "##\u30fb": 1.0, "##\u30fc": 9.07779312133789, "##\u4e00": 1.0, "##\u4e09": 1.0, "##\u4e0a": 1.0, "##\u4e0b": 1.0, "##\u4e0d": 1.0, "##\u4e16": 1.0, "##\u4e2d": 1.0, "##\u4e3b": 1.0, "##\u4e45": 1.0, "##\u4e4b": 1.0, "##\u4e5f": 1.0, "##\u4e8b": 1.0, "##\u4e8c": 1.0, "##\u4e94": 1.0, "##\u4e95": 1.0, "##\u4eac": 1.0, "##\u4eba": 1.0, "##\u4ebb": 1.0, "##\u4ec1": 1.0, "##\u4ecb": 1.0, "##\u4ee3": 1.0, "##\u4eee": 1.0, "##\u4f0a": 1.0, "##\u4f1a": 1.0, "##\u4f50": 1.0, "##\u4f8d": 1.0, "##\u4fdd": 1.0, "##\u4fe1": 1.0, "##\u5065": 1.0, "##\u5143": 1.0, "##\u5149": 1.0, "##\u516b": 1.0, "##\u516c": 1.0, "##\u5185": 1.0, "##\u51fa": 1.0, "##\u5206": 1.0, "##\u524d": 1.0, "##\u5289": 1.0, "##\u529b": 1.0, "##\u52a0": 1.0, "##\u52dd": 1.0, "##\u5317": 1.0, "##\u533a": 1.0, "##\u5341": 1.0, "##\u5343": 1.0, "##\u5357": 1.0, "##\u535a": 1.0, "##\u539f": 1.0, "##\u53e3": 1.0, "##\u53e4": 1.0, "##\u53f2": 1.0, "##\u53f8": 1.0, "##\u5408": 1.0, "##\u5409": 1.0, "##\u540c": 1.0, "##\u540d": 1.0, "##\u548c": 1.0, "##\u56d7": 1.0, "##\u56db": 1.0, "##\u56fd": 1.0, "##\u570b": 1.0, "##\u571f": 1.0, "##\u5730": 1.0, "##\u5742": 1.0, "##\u57ce": 1.0, "##\u5802": 1.0, "##\u5834": 1.0, "##\u58eb": 1.0, "##\u590f": 1.0, "##\u5916": 1.0, "##\u5927": 1.0, "##\u5929": 1.0, "##\u592a": 1.0, "##\u592b": 1.0, "##\u5948": 1.0, "##\u5973": 1.0, "##\u5b50": 1.0, "##\u5b66": 1.0, "##\u5b80": 1.0, "##\u5b87": 1.0, "##\u5b89": 1.0, "##\u5b97": 1.0, "##\u5b9a": 1.0, "##\u5ba3": 1.0, "##\u5bae": 1.0, "##\u5bb6": 1.0, "##\u5bbf": 1.0, "##\u5bfa": 1.0, "##\u5c07": 1.0, "##\u5c0f": 1.0, "##\u5c1a": 1.0, "##\u5c71": 1.0, "##\u5ca1": 1.0, "##\u5cf6": 1.0, "##\u5d0e": 1.0, "##\u5ddd": 1.0, "##\u5dde": 1.0, "##\u5dff": 1.0, "##\u5e1d": 1.0, "##\u5e73": 1.0, "##\u5e74": 1.0, "##\u5e78": 1.0, "##\u5e7f": 1.0, "##\u5f18": 1.0, "##\u5f35": 1.0, "##\u5f73": 1.0, "##\u5f8c": 1.0, "##\u5fa1": 1.0, "##\u5fb7": 1.0, "##\u5fc3": 1.0, "##\u5fc4": 1.0, "##\u5fd7": 1.0, "##\u5fe0": 1.0, "##\u611b": 1.0, "##\u6210": 1.0, "##\u6211": 1.0, "##\u6226": 1.0, "##\u6238": 1.0, "##\u624b": 1.0, "##\u624c": 1.0, "##\u653f": 1.0, "##\u6587": 1.0, "##\u65b0": 1.0, "##\u65b9": 1.0, "##\u65e5": 1.0, "##\u660e": 1.0, "##\u661f": 1.0, "##\u6625": 1.0, "##\u662d": 1.0, "##\u667a": 1.0, "##\u66f2": 1.0, "##\u66f8": 1.0, "##\u6708": 1.0, "##\u6709": 1.0, "##\u671d": 1.0, "##\u6728": 1.0, "##\u672c": 1.0, "##\u674e": 1.0, "##\u6751": 1.0, "##\u6771": 1.0, "##\u677e": 1.0, "##\u6797": 1.0, "##\u68ee": 1.0, "##\u694a": 1.0, "##\u6a39": 1.0, "##\u6a4b": 1.0, "##\u6b4c": 1.0, "##\u6b62": 1.0, "##\u6b63": 1.0, "##\u6b66": 1.0, "##\u6bd4": 1.0, "##\u6c0f": 1.0, "##\u6c11": 1.0, "##\u6c34": 1.0, "##\u6c35": 1.0, "##\u6c37": 1.0, "##\u6c38": 1.0, "##\u6c5f": 1.0, "##\u6ca2": 1.0, "##\u6cb3": 1.0, "##\u6cbb": 1.0, "##\u6cd5": 1.0, "##\u6d77": 1.0, "##\u6e05": 1.0, "##\u6f22": 1.0, "##\u702c": 1.0, "##\u706b": 1.0, "##\u7248": 1.0, "##\u72ac": 1.0, "##\u738b": 1.0, "##\u751f": 1.0, "##\u7530": 1.0, "##\u7537": 1.0, "##\u7592": 1.0, "##\u767a": 1.0, "##\u767d": 1.0, "##\u7684": 1.0, "##\u7687": 1.0, "##\u76ee": 1.0, "##\u76f8": 1.0, "##\u7701": 1.0, "##\u771f": 1.0, "##\u77f3": 1.0, "##\u793a": 1.0, "##\u793e": 1.0, "##\u795e": 1.0, "##\u798f": 1.0, "##\u79be": 1.0, "##\u79c0": 1.0, "##\u79cb": 1.0, "##\u7a7a": 1.0, "##\u7acb": 1.0, "##\u7ae0": 1.0, "##\u7af9": 1.0, "##\u7cf9": 1.0, "##\u7f8e": 1.0, "##\u7fa9": 1.0, "##\u8033": 1.0, "##\u826f": 1.0, "##\u8279": 1.0, "##\u82b1": 1.0, "##\u82f1": 1.0, "##\u83ef": 1.0, "##\u8449": 1.0, "##\u85e4": 1.0, "##\u884c": 1.0, "##\u8857": 1.0, "##\u897f": 1.0, "##\u898b": 1.0, "##\u8a01": 1.0, "##\u8a9e": 1.0, "##\u8c37": 1.0, "##\u8c9d": 1.0, "##\u8cb4": 1.0, "##\u8eca": 1.0, "##\u8ecd": 1.0, "##\u8fb6": 1.0, "##\u9053": 1.0, "##\u90ce": 1.0, "##\u90e1": 1.0, "##\u90e8": 1.0, "##\u90fd": 1.0, "##\u91cc": 1.0, "##\u91ce": 1.0, "##\u91d1": 1.0, "##\u9234": 1.0, "##\u9547": 1.0, "##\u9577": 1.0, "##\u9580": 1.0, "##\u9593": 1.0, "##\u961d": 1.0, "##\u963f": 1.0, "##\u9673": 1.0, "##\u967d": 1.0, "##\u96c4": 1.0, "##\u9752": 1.0, "##\u9762": 1.0, "##\u98a8": 1.0, "##\u98df": 1.0, "##\u9999": 1.0, "##\u99ac": 1.0, "##\u9ad8": 1.0, "##\u9f8d": 1.0, "##\u9fb8": 1.0, "##\ufb01": 7.990805149078369, "##\ufb02": 9.524978637695312, "##\uff01": 1.0, "##\uff08": 1.0, "##\uff09": 1.0, "##\uff0c": 1.0, "##\uff0d": 1.0, "##\uff0e": 1.0, "##\uff0f": 1.0, "##\uff1a": 1.0, "##\uff1f": 1.0, "##\uff5e": 13.392313957214355} \ No newline at end of file diff --git a/opensearch-project/opensearch-neural-sparse-encoding-doc-v3-gte/tokenizer.json b/opensearch-project/opensearch-neural-sparse-encoding-doc-v3-gte/tokenizer.json new file mode 100644 index 0000000..a8472b8 --- /dev/null +++ b/opensearch-project/opensearch-neural-sparse-encoding-doc-v3-gte/tokenizer.json @@ -0,0 +1,30684 @@ +{ + "version": "1.0", + "truncation": { + "direction": "Right", + "max_length": 8192, + "strategy": "LongestFirst", + "stride": 0 + }, + "padding": { + "strategy": "BatchLongest", + "direction": "Right", + "pad_to_multiple_of": null, + "pad_id": 0, + "pad_type_id": 0, + "pad_token": "[PAD]" + }, + "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/opensearch-project/opensearch-neural-sparse-encoding-doc-v3-gte/tokenizer_config.json b/opensearch-project/opensearch-neural-sparse-encoding-doc-v3-gte/tokenizer_config.json new file mode 100644 index 0000000..9bcc698 --- /dev/null +++ b/opensearch-project/opensearch-neural-sparse-encoding-doc-v3-gte/tokenizer_config.json @@ -0,0 +1,55 @@ +{ + "added_tokens_decoder": { + "0": { + "content": "[PAD]", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "100": { + "content": "[UNK]", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "101": { + "content": "[CLS]", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "102": { + "content": "[SEP]", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "103": { + "content": "[MASK]", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + } + }, + "clean_up_tokenization_spaces": true, + "cls_token": "[CLS]", + "do_lower_case": true, + "mask_token": "[MASK]", + "model_max_length": 8192, + "pad_token": "[PAD]", + "sep_token": "[SEP]", + "strip_accents": null, + "tokenize_chinese_chars": true, + "tokenizer_class": "DistilBertTokenizer", + "unk_token": "[UNK]" +} diff --git a/pyproject.toml b/pyproject.toml index 8890af5..8a0c82f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,12 +4,14 @@ version = "2.0.0" requires-python = ">=3.14" dependencies = [ + "python-dotenv>=1.2.2", "sentry-sdk>=2.29.1", + "transformers[torch]>=5.2.0", ] [dependency-groups] dev = [ - "black>=26.1.0", + "aws-lambda-typing>=2.2.0", "coveralls>=4.0.1", "ipython>=9.2.0", "mypy>=1.15.0", @@ -19,9 +21,6 @@ dev = [ "ruff>=0.11.11", ] -[tool.black] -line-length = 90 - [tool.mypy] disallow_untyped_calls = true disallow_untyped_defs = true @@ -58,9 +57,6 @@ ignore = [ "S321", ] -# allow autofix behavior for specified rules -fixable = ["E", "F", "I", "Q"] - [tool.ruff.lint.flake8-annotations] mypy-init-return = true @@ -72,6 +68,8 @@ fixture-parentheses = false "ANN", "ARG001", "S101", + "SLF001", + "PLR2004", ] [tool.ruff.lint.pycodestyle] diff --git a/tests/conftest.py b/tests/conftest.py index 6fdf7de..f14613f 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -1,6 +1,7 @@ -import pytest +import os - -@pytest.fixture(autouse=True) -def _test_env(monkeypatch): - monkeypatch.setenv("WORKSPACE", "test") +# Set required environment variables for testing here +# Failure to do so will result in errors during initialization +# You can override these with test-specific values in individual test files as needed +# with monkeypatch.setenv("VARIABLE", "custom_value") +os.environ["WORKSPACE"] = "test" diff --git a/tests/sam/env.json.template b/tests/sam/env.json.template index b740b91..c384eea 100644 --- a/tests/sam/env.json.template +++ b/tests/sam/env.json.template @@ -1,3 +1,5 @@ { - "MyApp": {} + "Tokenizer": { + "SENTRY_DSN": "None" + } } diff --git a/tests/sam/event.json b/tests/sam/event.json new file mode 100644 index 0000000..80d7564 --- /dev/null +++ b/tests/sam/event.json @@ -0,0 +1,3 @@ +{ + "query": "machine learning" +} diff --git a/tests/sam/template.yaml b/tests/sam/template.yaml index 94d2a1e..0f0cfc1 100644 --- a/tests/sam/template.yaml +++ b/tests/sam/template.yaml @@ -1,28 +1,25 @@ AWSTemplateFormatVersion: "2010-09-09" Transform: AWS::Serverless-2016-10-31 Resources: - MyApp: + Tokenizer: Type: AWS::Serverless::Function Properties: PackageType: Image Timeout: 900 MemorySize: 1024 - Events: - BagitApi: - Type: HttpApi - Properties: - Path: /{proxy+} - Method: ANY - ImageUri: myapp:latest + Architectures: + - arm64 + ImageUri: tokenizer:latest Environment: # While tests/sam/env.json is required for sensitive env vars, ALL env vars # used in the lambda must exist here as well, even just as "..." placeholders. Variables: + LOG_LEVEL: "INFO" WORKSPACE: "dev" - WARNING_ONLY_LOGGERS: "asyncio,botocore,urllib3,s3transfer,boto3" - #SENTRY_DSN: "None" + WARNING_ONLY_LOGGERS: "asyncio" + SENTRY_DSN: "None" Metadata: DockerContext: ../../. # Build Lambda Dockerfile DockerTag: latest Dockerfile: Dockerfile - SamResourceId: MyApp + SamResourceId: Tokenizer diff --git a/tests/test_query_tokenizer.py b/tests/test_query_tokenizer.py new file mode 100644 index 0000000..e1d450d --- /dev/null +++ b/tests/test_query_tokenizer.py @@ -0,0 +1,131 @@ +import json +from unittest.mock import MagicMock, mock_open, patch + +import pytest +import torch + +from lambdas.query_tokenizer import QueryTokenizer + +VOCAB_SIZE = 100 +MOCK_IDF = {"hello": 1.5, "world": 2.0} +# token ids for "hello" and "world" in mock vocab +HELLO_ID = 5 +WORLD_ID = 10 + + +def make_mock_tokenizer(): + mock_tokenizer = MagicMock() + mock_tokenizer.vocab_size = VOCAB_SIZE + mock_tokenizer.convert_tokens_to_ids.side_effect = lambda t: ( + HELLO_ID if t == "hello" else WORLD_ID + ) + mock_tokenizer.convert_ids_to_tokens.side_effect = lambda ids: [ + "hello" if i == HELLO_ID else "world" for i in ids + ] + return mock_tokenizer + + +@pytest.fixture +def query_tokenizer(): + mock_tokenizer = make_mock_tokenizer() + with ( + patch( + "lambdas.query_tokenizer.AutoTokenizer.from_pretrained", + return_value=mock_tokenizer, + ), + patch("builtins.open", mock_open(read_data=json.dumps(MOCK_IDF))), + ): + return QueryTokenizer() + + +def test_idf_loaded_as_tensor(query_tokenizer): + assert isinstance(query_tokenizer.idf, torch.Tensor) + assert query_tokenizer.idf.shape[0] == VOCAB_SIZE + assert query_tokenizer.idf[HELLO_ID].item() == pytest.approx(1.5) + assert query_tokenizer.idf[WORLD_ID].item() == pytest.approx(2.0) + + +def test_tokenize_query_returns_dict(query_tokenizer): + # Simulate tokenizer returning input_ids containing HELLO_ID and WORLD_ID + query_tokenizer.tokenizer.return_value = { + "input_ids": torch.tensor([[HELLO_ID, WORLD_ID]]) + } + result = query_tokenizer.tokenize_query("hello world") + assert isinstance(result, dict) + assert len(result) > 0 + + +def test_tokenize_query_weights_are_floats(query_tokenizer): + query_tokenizer.tokenizer.return_value = { + "input_ids": torch.tensor([[HELLO_ID, WORLD_ID]]) + } + result = query_tokenizer.tokenize_query("hello world") + for weight in result.values(): + assert isinstance(weight, float) + + +def test_sparse_vector_to_dict_maps_tokens_to_weights(query_tokenizer): + sparse = torch.zeros(VOCAB_SIZE) + sparse[HELLO_ID] = 1.5 + sparse[WORLD_ID] = 2.0 + result = query_tokenizer._sparse_vector_to_dict(sparse) + assert result == {"hello": pytest.approx(1.5), "world": pytest.approx(2.0)} + + +def test_sparse_vector_to_dict_excludes_zero_weights(query_tokenizer): + sparse = torch.zeros(VOCAB_SIZE) + sparse[HELLO_ID] = 1.5 + result = query_tokenizer._sparse_vector_to_dict(sparse) + assert "world" not in result + + +def test_tokenize_query_returns_correct_weights(query_tokenizer): + query_tokenizer.tokenizer.return_value = { + "input_ids": torch.tensor([[HELLO_ID, WORLD_ID]]) + } + result = query_tokenizer.tokenize_query("hello world") + assert result == {"hello": pytest.approx(1.5), "world": pytest.approx(2.0)} + + +def test_tokenize_query_excludes_tokens_not_in_idf(query_tokenizer): + # ID 20 is not in MOCK_IDF so its IDF weight is 0; it should be absent from result + query_tokenizer.tokenizer.convert_ids_to_tokens.side_effect = lambda ids: [ + "hello" if i == HELLO_ID else "unknown" for i in ids + ] + query_tokenizer.tokenizer.return_value = {"input_ids": torch.tensor([[HELLO_ID, 20]])} + result = query_tokenizer.tokenize_query("hello unknown") + assert "hello" in result + assert "unknown" not in result + + +def test_init_raises_filenotfounderror_when_tokenizer_path_missing(): + """Test that FileNotFoundError is raised when tokenizer_path doesn't exist.""" + with ( + patch("pathlib.Path.exists", return_value=False), + pytest.raises(FileNotFoundError, match="Tokenizer path not found"), + ): + QueryTokenizer() + + +def test_init_raises_filenotfounderror_with_correct_path_message(): + """Test that FileNotFoundError message includes the missing path.""" + missing_path = "opensearch-project/opensearch-neural-sparse-encoding-doc-v3-gte" + with patch("pathlib.Path.exists", return_value=False): + with pytest.raises(FileNotFoundError) as exc_info: + QueryTokenizer() + assert missing_path in str(exc_info.value) + + +def test_load_idf_raises_filenotfounderror_when_idf_file_missing(): + """Test that FileNotFoundError is raised when IDF file doesn't exist.""" + mock_tokenizer = make_mock_tokenizer() + with ( + patch( + "lambdas.query_tokenizer.AutoTokenizer.from_pretrained", + return_value=mock_tokenizer, + ), + patch("pathlib.Path.exists", return_value=True), + patch("builtins.open", side_effect=FileNotFoundError()), + pytest.raises(FileNotFoundError), + ): + QueryTokenizer() diff --git a/tests/test_tokenizer_handler.py b/tests/test_tokenizer_handler.py new file mode 100644 index 0000000..9c21cba --- /dev/null +++ b/tests/test_tokenizer_handler.py @@ -0,0 +1,61 @@ +from unittest.mock import MagicMock, patch + +import pytest + +from lambdas import tokenizer_handler + + +@pytest.fixture +def mock_query_tokenizer(): + mock_instance = MagicMock() + with patch.object(tokenizer_handler, "_get_tokenizer", return_value=mock_instance): + yield mock_instance + + +def test_returns_opensearch_query_structure(mock_query_tokenizer): + mock_query_tokenizer.tokenize_query.return_value = {"hello": 1.5, "world": 2.0} + result = tokenizer_handler.lambda_handler({"query": "hello world"}, {}) + assert "query" in result + assert "bool" in result["query"] + assert "should" in result["query"]["bool"] + + +def test_opensearch_query_contains_rank_features(mock_query_tokenizer): + mock_query_tokenizer.tokenize_query.return_value = {"hello": 1.5} + result = tokenizer_handler.lambda_handler({"query": "hello"}, {}) + should_clauses = result["query"]["bool"]["should"] + assert len(should_clauses) == 1 + assert should_clauses[0]["rank_feature"]["field"] == "embedding_full_record.hello" + assert should_clauses[0]["rank_feature"]["boost"] == pytest.approx(1.5) + + +def test_returns_no_query_provided_for_empty_query(mock_query_tokenizer): + result = tokenizer_handler.lambda_handler({"query": ""}, {}) + assert result == {"error": "Query is required in the event payload."} + mock_query_tokenizer.tokenize_query.assert_not_called() + + +def test_returns_no_query_provided_when_query_key_missing(mock_query_tokenizer): + result = tokenizer_handler.lambda_handler({}, {}) + assert result == {"error": "Query is required in the event payload."} + mock_query_tokenizer.tokenize_query.assert_not_called() + + +def test_each_token_weight_pair_becomes_rank_feature(mock_query_tokenizer): + mock_query_tokenizer.tokenize_query.return_value = {"foo": 1.0, "bar": 3.5} + result = tokenizer_handler.lambda_handler({"query": "foo bar"}, {}) + should_clauses = result["query"]["bool"]["should"] + fields = {c["rank_feature"]["field"] for c in should_clauses} + assert fields == {"embedding_full_record.foo", "embedding_full_record.bar"} + + +def test_tokenize_query_called_with_correct_query(mock_query_tokenizer): + mock_query_tokenizer.tokenize_query.return_value = {"fakedata": 1.5} + tokenizer_handler.lambda_handler({"query": "hello world"}, {}) + mock_query_tokenizer.tokenize_query.assert_called_once_with("hello world") + + +def test_returns_error_for_whitespace_only_query(mock_query_tokenizer): + result = tokenizer_handler.lambda_handler({"query": " "}, {}) + assert result == {"error": "Query is required in the event payload."} + mock_query_tokenizer.tokenize_query.assert_not_called() diff --git a/uv.lock b/uv.lock index 7231743..30bbc8c 100644 --- a/uv.lock +++ b/uv.lock @@ -2,6 +2,24 @@ version = 1 revision = 3 requires-python = ">=3.14" +[[package]] +name = "accelerate" +version = "1.12.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "huggingface-hub" }, + { name = "numpy" }, + { name = "packaging" }, + { name = "psutil" }, + { name = "pyyaml" }, + { name = "safetensors" }, + { name = "torch" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/4a/8e/ac2a9566747a93f8be36ee08532eb0160558b07630a081a6056a9f89bf1d/accelerate-1.12.0.tar.gz", hash = "sha256:70988c352feb481887077d2ab845125024b2a137a5090d6d7a32b57d03a45df6", size = 398399, upload-time = "2025-11-21T11:27:46.973Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9f/d2/c581486aa6c4fbd7394c23c47b83fa1a919d34194e16944241daf9e762dd/accelerate-1.12.0-py3-none-any.whl", hash = "sha256:3e2091cd341423207e2f084a6654b1efcd250dc326f2a37d6dde446e07cabb11", size = 380935, upload-time = "2025-11-21T11:27:44.522Z" }, +] + [[package]] name = "annotated-doc" version = "0.0.4" @@ -11,6 +29,18 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/1e/d3/26bf1008eb3d2daa8ef4cacc7f3bfdc11818d111f7e2d0201bc6e3b49d45/annotated_doc-0.0.4-py3-none-any.whl", hash = "sha256:571ac1dc6991c450b25a9c2d84a3705e2ae7a53467b5d111c24fa8baabbed320", size = 5303, upload-time = "2025-11-10T22:07:40.673Z" }, ] +[[package]] +name = "anyio" +version = "4.12.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "idna" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/96/f0/5eb65b2bb0d09ac6776f2eb54adee6abe8228ea05b20a5ad0e4945de8aac/anyio-4.12.1.tar.gz", hash = "sha256:41cfcc3a4c85d3f05c932da7c26d0201ac36f72abd4435ba90d0464a3ffed703", size = 228685, upload-time = "2026-01-06T11:45:21.246Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/38/0e/27be9fdef66e72d64c0cdc3cc2823101b80585f8119b5c112c2e8f5f7dab/anyio-4.12.1-py3-none-any.whl", hash = "sha256:d405828884fc140aa80a3c667b8beed277f1dfedec42ba031bd6ac3db606ab6c", size = 113592, upload-time = "2026-01-06T11:45:19.497Z" }, +] + [[package]] name = "asttokens" version = "3.0.1" @@ -21,25 +51,12 @@ wheels = [ ] [[package]] -name = "black" -version = "26.1.0" +name = "aws-lambda-typing" +version = "2.20.0" source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "click" }, - { name = "mypy-extensions" }, - { name = "packaging" }, - { name = "pathspec" }, - { name = "platformdirs" }, - { name = "pytokens" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/13/88/560b11e521c522440af991d46848a2bde64b5f7202ec14e1f46f9509d328/black-26.1.0.tar.gz", hash = "sha256:d294ac3340eef9c9eb5d29288e96dc719ff269a88e27b396340459dd85da4c58", size = 658785, upload-time = "2026-01-18T04:50:11.993Z" } +sdist = { url = "https://files.pythonhosted.org/packages/ba/2a/14e7a3dba738265db6eddfd0c9ec1619c0c14e48fcf70627fc75fca83305/aws-lambda-typing-2.20.0.tar.gz", hash = "sha256:78b0d8ebab73b3a6b0da98a7969f4e9c4bb497298ec50f3217da8a8dfba17154", size = 19413, upload-time = "2024-04-02T09:43:03.326Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/6a/83/be35a175aacfce4b05584ac415fd317dd6c24e93a0af2dcedce0f686f5d8/black-26.1.0-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:9dc8c71656a79ca49b8d3e2ce8103210c9481c57798b48deeb3a8bb02db5f115", size = 1871864, upload-time = "2026-01-18T04:59:47.586Z" }, - { url = "https://files.pythonhosted.org/packages/a5/f5/d33696c099450b1274d925a42b7a030cd3ea1f56d72e5ca8bbed5f52759c/black-26.1.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:b22b3810451abe359a964cc88121d57f7bce482b53a066de0f1584988ca36e79", size = 1701009, upload-time = "2026-01-18T04:59:49.443Z" }, - { url = "https://files.pythonhosted.org/packages/1b/87/670dd888c537acb53a863bc15abbd85b22b429237d9de1b77c0ed6b79c42/black-26.1.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:53c62883b3f999f14e5d30b5a79bd437236658ad45b2f853906c7cbe79de00af", size = 1767806, upload-time = "2026-01-18T04:59:50.769Z" }, - { url = "https://files.pythonhosted.org/packages/fe/9c/cd3deb79bfec5bcf30f9d2100ffeec63eecce826eb63e3961708b9431ff1/black-26.1.0-cp314-cp314-win_amd64.whl", hash = "sha256:f016baaadc423dc960cdddf9acae679e71ee02c4c341f78f3179d7e4819c095f", size = 1433217, upload-time = "2026-01-18T04:59:52.218Z" }, - { url = "https://files.pythonhosted.org/packages/4e/29/f3be41a1cf502a283506f40f5d27203249d181f7a1a2abce1c6ce188035a/black-26.1.0-cp314-cp314-win_arm64.whl", hash = "sha256:66912475200b67ef5a0ab665011964bf924745103f51977a78b4fb92a9fc1bf0", size = 1245773, upload-time = "2026-01-18T04:59:54.457Z" }, - { url = "https://files.pythonhosted.org/packages/e4/3d/51bdb3ecbfadfaf825ec0c75e1de6077422b4afa2091c6c9ba34fbfc0c2d/black-26.1.0-py3-none-any.whl", hash = "sha256:1054e8e47ebd686e078c0bb0eaf31e6ce69c966058d122f2c0c950311f9f3ede", size = 204010, upload-time = "2026-01-18T04:50:09.978Z" }, + { url = "https://files.pythonhosted.org/packages/55/3d/4031f5950d65e89136d20a18b5ac985d5f087c29c902f285b6e8063619e4/aws_lambda_typing-2.20.0-py3-none-any.whl", hash = "sha256:1d44264cabfeab5ac38e67ddd0c874e677b2cbbae77a42d0519df470e6bbb49b", size = 35296, upload-time = "2024-04-02T09:43:05.881Z" }, ] [[package]] @@ -186,6 +203,26 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/60/f1/5a884d2e8e3e7e7d854d3032b777bd22aad1598161cf9aa77ac37d684908/coveralls-4.1.0-py3-none-any.whl", hash = "sha256:bfacfda2d443c24fc90d67035027cec15015fff2dbd036427e8bf8f4953dda2e", size = 14168, upload-time = "2026-02-28T15:16:46.181Z" }, ] +[[package]] +name = "cuda-bindings" +version = "12.9.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "cuda-pathfinder" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/d1/af/6dfd8f2ed90b1d4719bc053ff8940e494640fe4212dc3dd72f383e4992da/cuda_bindings-12.9.4-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:8b72ee72a9cc1b531db31eebaaee5c69a8ec3500e32c6933f2d3b15297b53686", size = 11922703, upload-time = "2025-10-21T14:52:03.585Z" }, + { url = "https://files.pythonhosted.org/packages/6c/19/90ac264acc00f6df8a49378eedec9fd2db3061bf9263bf9f39fd3d8377c3/cuda_bindings-12.9.4-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:d80bffc357df9988dca279734bc9674c3934a654cab10cadeed27ce17d8635ee", size = 11924658, upload-time = "2025-10-21T14:52:10.411Z" }, +] + +[[package]] +name = "cuda-pathfinder" +version = "1.4.0" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ff/60/d8f1dbfb7f06b94c662e98c95189e6f39b817da638bc8fcea0d003f89e5d/cuda_pathfinder-1.4.0-py3-none-any.whl", hash = "sha256:437079ca59e7b61ae439ecc501d69ed87b3accc34d58153ef1e54815e2c2e118", size = 38406, upload-time = "2026-02-25T22:13:00.807Z" }, +] + [[package]] name = "cyclonedx-python-lib" version = "11.6.0" @@ -246,6 +283,96 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/f9/0b/de6f54d4a8bedfe8645c41497f3c18d749f0bd3218170c667bf4b81d0cdd/filelock-3.25.0-py3-none-any.whl", hash = "sha256:5ccf8069f7948f494968fc0713c10e5c182a9c9d9eef3a636307a20c2490f047", size = 26427, upload-time = "2026-03-01T15:08:44.593Z" }, ] +[[package]] +name = "fsspec" +version = "2026.2.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/51/7c/f60c259dcbf4f0c47cc4ddb8f7720d2dcdc8888c8e5ad84c73ea4531cc5b/fsspec-2026.2.0.tar.gz", hash = "sha256:6544e34b16869f5aacd5b90bdf1a71acb37792ea3ddf6125ee69a22a53fb8bff", size = 313441, upload-time = "2026-02-05T21:50:53.743Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e6/ab/fb21f4c939bb440104cc2b396d3be1d9b7a9fd3c6c2a53d98c45b3d7c954/fsspec-2026.2.0-py3-none-any.whl", hash = "sha256:98de475b5cb3bd66bedd5c4679e87b4fdfe1a3bf4d707b151b3c07e58c9a2437", size = 202505, upload-time = "2026-02-05T21:50:51.819Z" }, +] + +[[package]] +name = "h11" +version = "0.16.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/01/ee/02a2c011bdab74c6fb3c75474d40b3052059d95df7e73351460c8588d963/h11-0.16.0.tar.gz", hash = "sha256:4e35b956cf45792e4caa5885e69fba00bdbc6ffafbfa020300e549b208ee5ff1", size = 101250, upload-time = "2025-04-24T03:35:25.427Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/04/4b/29cac41a4d98d144bf5f6d33995617b185d14b22401f75ca86f384e87ff1/h11-0.16.0-py3-none-any.whl", hash = "sha256:63cf8bbe7522de3bf65932fda1d9c2772064ffb3dae62d55932da54b31cb6c86", size = 37515, upload-time = "2025-04-24T03:35:24.344Z" }, +] + +[[package]] +name = "hf-xet" +version = "1.3.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/8b/cb/9bb543bd987ffa1ee48202cc96a756951b734b79a542335c566148ade36c/hf_xet-1.3.2.tar.gz", hash = "sha256:e130ee08984783d12717444e538587fa2119385e5bd8fc2bb9f930419b73a7af", size = 643646, upload-time = "2026-02-27T17:26:08.051Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ba/75/9d54c1ae1d05fb704f977eca1671747babf1957f19f38ae75c5933bc2dc1/hf_xet-1.3.2-cp314-cp314t-macosx_10_12_x86_64.whl", hash = "sha256:c34e2c7aefad15792d57067c1c89b2b02c1bbaeabd7f8456ae3d07b4bbaf4094", size = 3761076, upload-time = "2026-02-27T17:25:55.42Z" }, + { url = "https://files.pythonhosted.org/packages/f2/8a/08a24b6c6f52b5d26848c16e4b6d790bb810d1bf62c3505bed179f7032d3/hf_xet-1.3.2-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:4bc995d6c41992831f762096020dc14a65fdf3963f86ffed580b596d04de32e3", size = 3521745, upload-time = "2026-02-27T17:25:54.217Z" }, + { url = "https://files.pythonhosted.org/packages/b5/db/a75cf400dd8a1a8acf226a12955ff6ee999f272dfc0505bafd8079a61267/hf_xet-1.3.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:959083c89dee30f7d6f890b36cdadda823386c4de63b1a30384a75bfd2ae995d", size = 4176301, upload-time = "2026-02-27T17:25:46.044Z" }, + { url = "https://files.pythonhosted.org/packages/01/40/6c4c798ffdd83e740dd3925c4e47793b07442a9efa3bc3866ba141a82365/hf_xet-1.3.2-cp314-cp314t-manylinux_2_28_aarch64.whl", hash = "sha256:cfa760888633b08c01b398d212ce7e8c0d7adac6c86e4b20dfb2397d8acd78ee", size = 3955437, upload-time = "2026-02-27T17:25:44.703Z" }, + { url = "https://files.pythonhosted.org/packages/0c/09/9a3aa7c5f07d3e5cc57bb750d12a124ffa72c273a87164bd848f9ac5cc14/hf_xet-1.3.2-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:3155a02e083aa21fd733a7485c7c36025e49d5975c8d6bda0453d224dd0b0ac4", size = 4154535, upload-time = "2026-02-27T17:26:05.207Z" }, + { url = "https://files.pythonhosted.org/packages/ae/e0/831f7fa6d90cb47a230bc23284b502c700e1483bbe459437b3844cdc0776/hf_xet-1.3.2-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:91b1dc03c31cbf733d35dc03df7c5353686233d86af045e716f1e0ea4a2673cf", size = 4393891, upload-time = "2026-02-27T17:26:06.607Z" }, + { url = "https://files.pythonhosted.org/packages/ab/96/6ed472fdce7f8b70f5da6e3f05be76816a610063003bfd6d9cea0bbb58a3/hf_xet-1.3.2-cp314-cp314t-win_amd64.whl", hash = "sha256:211f30098512d95e85ad03ae63bd7dd2c4df476558a5095d09f9e38e78cbf674", size = 3637583, upload-time = "2026-02-27T17:26:17.349Z" }, + { url = "https://files.pythonhosted.org/packages/8b/e8/a069edc4570b3f8e123c0b80fadc94530f3d7b01394e1fc1bb223339366c/hf_xet-1.3.2-cp314-cp314t-win_arm64.whl", hash = "sha256:4a6817c41de7c48ed9270da0b02849347e089c5ece9a0e72ae4f4b3a57617f82", size = 3497977, upload-time = "2026-02-27T17:26:14.966Z" }, + { url = "https://files.pythonhosted.org/packages/d8/28/dbb024e2e3907f6f3052847ca7d1a2f7a3972fafcd53ff79018977fcb3e4/hf_xet-1.3.2-cp37-abi3-macosx_10_12_x86_64.whl", hash = "sha256:f93b7595f1d8fefddfede775c18b5c9256757824f7f6832930b49858483cd56f", size = 3763961, upload-time = "2026-02-27T17:25:52.537Z" }, + { url = "https://files.pythonhosted.org/packages/e4/71/b99aed3823c9d1795e4865cf437d651097356a3f38c7d5877e4ac544b8e4/hf_xet-1.3.2-cp37-abi3-macosx_11_0_arm64.whl", hash = "sha256:a85d3d43743174393afe27835bde0cd146e652b5fcfdbcd624602daef2ef3259", size = 3526171, upload-time = "2026-02-27T17:25:50.968Z" }, + { url = "https://files.pythonhosted.org/packages/9d/ca/907890ce6ef5598b5920514f255ed0a65f558f820515b18db75a51b2f878/hf_xet-1.3.2-cp37-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:7c2a054a97c44e136b1f7f5a78f12b3efffdf2eed3abc6746fc5ea4b39511633", size = 4180750, upload-time = "2026-02-27T17:25:43.125Z" }, + { url = "https://files.pythonhosted.org/packages/8c/ad/bc7f41f87173d51d0bce497b171c4ee0cbde1eed2d7b4216db5d0ada9f50/hf_xet-1.3.2-cp37-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:06b724a361f670ae557836e57801b82c75b534812e351a87a2c739f77d1e0635", size = 3961035, upload-time = "2026-02-27T17:25:41.837Z" }, + { url = "https://files.pythonhosted.org/packages/73/38/600f4dda40c4a33133404d9fe644f1d35ff2d9babb4d0435c646c63dd107/hf_xet-1.3.2-cp37-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:305f5489d7241a47e0458ef49334be02411d1d0f480846363c1c8084ed9916f7", size = 4161378, upload-time = "2026-02-27T17:26:00.365Z" }, + { url = "https://files.pythonhosted.org/packages/00/b3/7bc1ff91d1ac18420b7ad1e169b618b27c00001b96310a89f8a9294fe509/hf_xet-1.3.2-cp37-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:06cdbde243c85f39a63b28e9034321399c507bcd5e7befdd17ed2ccc06dfe14e", size = 4398020, upload-time = "2026-02-27T17:26:03.977Z" }, + { url = "https://files.pythonhosted.org/packages/2b/0b/99bfd948a3ed3620ab709276df3ad3710dcea61976918cce8706502927af/hf_xet-1.3.2-cp37-abi3-win_amd64.whl", hash = "sha256:9298b47cce6037b7045ae41482e703c471ce36b52e73e49f71226d2e8e5685a1", size = 3641624, upload-time = "2026-02-27T17:26:13.542Z" }, + { url = "https://files.pythonhosted.org/packages/cc/02/9a6e4ca1f3f73a164c0cd48e41b3cc56585dcc37e809250de443d673266f/hf_xet-1.3.2-cp37-abi3-win_arm64.whl", hash = "sha256:83d8ec273136171431833a6957e8f3af496bee227a0fe47c7b8b39c106d1749a", size = 3503976, upload-time = "2026-02-27T17:26:12.123Z" }, +] + +[[package]] +name = "httpcore" +version = "1.0.9" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "certifi" }, + { name = "h11" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/06/94/82699a10bca87a5556c9c59b5963f2d039dbd239f25bc2a63907a05a14cb/httpcore-1.0.9.tar.gz", hash = "sha256:6e34463af53fd2ab5d807f399a9b45ea31c3dfa2276f15a2c3f00afff6e176e8", size = 85484, upload-time = "2025-04-24T22:06:22.219Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7e/f5/f66802a942d491edb555dd61e3a9961140fd64c90bce1eafd741609d334d/httpcore-1.0.9-py3-none-any.whl", hash = "sha256:2d400746a40668fc9dec9810239072b40b4484b640a8c38fd654a024c7a1bf55", size = 78784, upload-time = "2025-04-24T22:06:20.566Z" }, +] + +[[package]] +name = "httpx" +version = "0.28.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "anyio" }, + { name = "certifi" }, + { name = "httpcore" }, + { name = "idna" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/b1/df/48c586a5fe32a0f01324ee087459e112ebb7224f646c0b5023f5e79e9956/httpx-0.28.1.tar.gz", hash = "sha256:75e98c5f16b0f35b567856f597f06ff2270a374470a5c2392242528e3e3e42fc", size = 141406, upload-time = "2024-12-06T15:37:23.222Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2a/39/e50c7c3a983047577ee07d2a9e53faf5a69493943ec3f6a384bdc792deb2/httpx-0.28.1-py3-none-any.whl", hash = "sha256:d909fcccc110f8c7faf814ca82a9a4d816bc5a6dbfea25d6591d6985b8ba59ad", size = 73517, upload-time = "2024-12-06T15:37:21.509Z" }, +] + +[[package]] +name = "huggingface-hub" +version = "1.5.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "filelock" }, + { name = "fsspec" }, + { name = "hf-xet", marker = "platform_machine == 'AMD64' or platform_machine == 'aarch64' or platform_machine == 'amd64' or platform_machine == 'arm64' or platform_machine == 'x86_64'" }, + { name = "httpx" }, + { name = "packaging" }, + { name = "pyyaml" }, + { name = "tqdm" }, + { name = "typer" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ae/76/b5efb3033d8499b17f9386beaf60f64c461798e1ee16d10bc9c0077beba5/huggingface_hub-1.5.0.tar.gz", hash = "sha256:f281838db29265880fb543de7a23b0f81d3504675de82044307ea3c6c62f799d", size = 695872, upload-time = "2026-02-26T15:35:32.745Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ec/74/2bc951622e2dbba1af9a460d93c51d15e458becd486e62c29cc0ccb08178/huggingface_hub-1.5.0-py3-none-any.whl", hash = "sha256:c9c0b3ab95a777fc91666111f3b3ede71c0cdced3614c553a64e98920585c4ee", size = 596261, upload-time = "2026-02-26T15:35:31.1Z" }, +] + [[package]] name = "identify" version = "2.6.17" @@ -318,6 +445,18 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/c0/5a/9cac0c82afec3d09ccd97c8b6502d48f165f9124db81b4bcb90b4af974ee/jedi-0.19.2-py2.py3-none-any.whl", hash = "sha256:a8ef22bde8490f57fe5c7681a3c83cb58874daf72b4784de3cce5b6ef6edb5b9", size = 1572278, upload-time = "2024-11-11T01:41:40.175Z" }, ] +[[package]] +name = "jinja2" +version = "3.1.6" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "markupsafe" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/df/bf/f7da0350254c0ed7c72f3e33cef02e048281fec7ecec5f032d4aac52226b/jinja2-3.1.6.tar.gz", hash = "sha256:0137fb05990d35f1275a587e9aee6d56da821fc83491a0fb838183be43f66d6d", size = 245115, upload-time = "2025-03-05T20:05:02.478Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/62/a1/3d680cbfd5f4b8f15abc1d571870c5fc3e594bb582bc3b64ea099db13e56/jinja2-3.1.6-py3-none-any.whl", hash = "sha256:85ece4451f492d0c13c5dd7c13a64681a86afae63a5f347908daf103ce6d2f67", size = 134899, upload-time = "2025-03-05T20:05:00.369Z" }, +] + [[package]] name = "librt" version = "0.8.1" @@ -376,6 +515,36 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/94/54/e7d793b573f298e1c9013b8c4dade17d481164aa517d1d7148619c2cedbf/markdown_it_py-4.0.0-py3-none-any.whl", hash = "sha256:87327c59b172c5011896038353a81343b6754500a08cd7a4973bb48c6d578147", size = 87321, upload-time = "2025-08-11T12:57:51.923Z" }, ] +[[package]] +name = "markupsafe" +version = "3.0.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/7e/99/7690b6d4034fffd95959cbe0c02de8deb3098cc577c67bb6a24fe5d7caa7/markupsafe-3.0.3.tar.gz", hash = "sha256:722695808f4b6457b320fdc131280796bdceb04ab50fe1795cd540799ebe1698", size = 80313, upload-time = "2025-09-27T18:37:40.426Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/33/8a/8e42d4838cd89b7dde187011e97fe6c3af66d8c044997d2183fbd6d31352/markupsafe-3.0.3-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:eaa9599de571d72e2daf60164784109f19978b327a3910d3e9de8c97b5b70cfe", size = 11619, upload-time = "2025-09-27T18:37:06.342Z" }, + { url = "https://files.pythonhosted.org/packages/b5/64/7660f8a4a8e53c924d0fa05dc3a55c9cee10bbd82b11c5afb27d44b096ce/markupsafe-3.0.3-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:c47a551199eb8eb2121d4f0f15ae0f923d31350ab9280078d1e5f12b249e0026", size = 12029, upload-time = "2025-09-27T18:37:07.213Z" }, + { url = "https://files.pythonhosted.org/packages/da/ef/e648bfd021127bef5fa12e1720ffed0c6cbb8310c8d9bea7266337ff06de/markupsafe-3.0.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:f34c41761022dd093b4b6896d4810782ffbabe30f2d443ff5f083e0cbbb8c737", size = 24408, upload-time = "2025-09-27T18:37:09.572Z" }, + { url = "https://files.pythonhosted.org/packages/41/3c/a36c2450754618e62008bf7435ccb0f88053e07592e6028a34776213d877/markupsafe-3.0.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:457a69a9577064c05a97c41f4e65148652db078a3a509039e64d3467b9e7ef97", size = 23005, upload-time = "2025-09-27T18:37:10.58Z" }, + { url = "https://files.pythonhosted.org/packages/bc/20/b7fdf89a8456b099837cd1dc21974632a02a999ec9bf7ca3e490aacd98e7/markupsafe-3.0.3-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:e8afc3f2ccfa24215f8cb28dcf43f0113ac3c37c2f0f0806d8c70e4228c5cf4d", size = 22048, upload-time = "2025-09-27T18:37:11.547Z" }, + { url = "https://files.pythonhosted.org/packages/9a/a7/591f592afdc734f47db08a75793a55d7fbcc6902a723ae4cfbab61010cc5/markupsafe-3.0.3-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:ec15a59cf5af7be74194f7ab02d0f59a62bdcf1a537677ce67a2537c9b87fcda", size = 23821, upload-time = "2025-09-27T18:37:12.48Z" }, + { url = "https://files.pythonhosted.org/packages/7d/33/45b24e4f44195b26521bc6f1a82197118f74df348556594bd2262bda1038/markupsafe-3.0.3-cp314-cp314-musllinux_1_2_riscv64.whl", hash = "sha256:0eb9ff8191e8498cca014656ae6b8d61f39da5f95b488805da4bb029cccbfbaf", size = 21606, upload-time = "2025-09-27T18:37:13.485Z" }, + { url = "https://files.pythonhosted.org/packages/ff/0e/53dfaca23a69fbfbbf17a4b64072090e70717344c52eaaaa9c5ddff1e5f0/markupsafe-3.0.3-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:2713baf880df847f2bece4230d4d094280f4e67b1e813eec43b4c0e144a34ffe", size = 23043, upload-time = "2025-09-27T18:37:14.408Z" }, + { url = "https://files.pythonhosted.org/packages/46/11/f333a06fc16236d5238bfe74daccbca41459dcd8d1fa952e8fbd5dccfb70/markupsafe-3.0.3-cp314-cp314-win32.whl", hash = "sha256:729586769a26dbceff69f7a7dbbf59ab6572b99d94576a5592625d5b411576b9", size = 14747, upload-time = "2025-09-27T18:37:15.36Z" }, + { url = "https://files.pythonhosted.org/packages/28/52/182836104b33b444e400b14f797212f720cbc9ed6ba34c800639d154e821/markupsafe-3.0.3-cp314-cp314-win_amd64.whl", hash = "sha256:bdc919ead48f234740ad807933cdf545180bfbe9342c2bb451556db2ed958581", size = 15341, upload-time = "2025-09-27T18:37:16.496Z" }, + { url = "https://files.pythonhosted.org/packages/6f/18/acf23e91bd94fd7b3031558b1f013adfa21a8e407a3fdb32745538730382/markupsafe-3.0.3-cp314-cp314-win_arm64.whl", hash = "sha256:5a7d5dc5140555cf21a6fefbdbf8723f06fcd2f63ef108f2854de715e4422cb4", size = 14073, upload-time = "2025-09-27T18:37:17.476Z" }, + { url = "https://files.pythonhosted.org/packages/3c/f0/57689aa4076e1b43b15fdfa646b04653969d50cf30c32a102762be2485da/markupsafe-3.0.3-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:1353ef0c1b138e1907ae78e2f6c63ff67501122006b0f9abad68fda5f4ffc6ab", size = 11661, upload-time = "2025-09-27T18:37:18.453Z" }, + { url = "https://files.pythonhosted.org/packages/89/c3/2e67a7ca217c6912985ec766c6393b636fb0c2344443ff9d91404dc4c79f/markupsafe-3.0.3-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:1085e7fbddd3be5f89cc898938f42c0b3c711fdcb37d75221de2666af647c175", size = 12069, upload-time = "2025-09-27T18:37:19.332Z" }, + { url = "https://files.pythonhosted.org/packages/f0/00/be561dce4e6ca66b15276e184ce4b8aec61fe83662cce2f7d72bd3249d28/markupsafe-3.0.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1b52b4fb9df4eb9ae465f8d0c228a00624de2334f216f178a995ccdcf82c4634", size = 25670, upload-time = "2025-09-27T18:37:20.245Z" }, + { url = "https://files.pythonhosted.org/packages/50/09/c419f6f5a92e5fadde27efd190eca90f05e1261b10dbd8cbcb39cd8ea1dc/markupsafe-3.0.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:fed51ac40f757d41b7c48425901843666a6677e3e8eb0abcff09e4ba6e664f50", size = 23598, upload-time = "2025-09-27T18:37:21.177Z" }, + { url = "https://files.pythonhosted.org/packages/22/44/a0681611106e0b2921b3033fc19bc53323e0b50bc70cffdd19f7d679bb66/markupsafe-3.0.3-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:f190daf01f13c72eac4efd5c430a8de82489d9cff23c364c3ea822545032993e", size = 23261, upload-time = "2025-09-27T18:37:22.167Z" }, + { url = "https://files.pythonhosted.org/packages/5f/57/1b0b3f100259dc9fffe780cfb60d4be71375510e435efec3d116b6436d43/markupsafe-3.0.3-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:e56b7d45a839a697b5eb268c82a71bd8c7f6c94d6fd50c3d577fa39a9f1409f5", size = 24835, upload-time = "2025-09-27T18:37:23.296Z" }, + { url = "https://files.pythonhosted.org/packages/26/6a/4bf6d0c97c4920f1597cc14dd720705eca0bf7c787aebc6bb4d1bead5388/markupsafe-3.0.3-cp314-cp314t-musllinux_1_2_riscv64.whl", hash = "sha256:f3e98bb3798ead92273dc0e5fd0f31ade220f59a266ffd8a4f6065e0a3ce0523", size = 22733, upload-time = "2025-09-27T18:37:24.237Z" }, + { url = "https://files.pythonhosted.org/packages/14/c7/ca723101509b518797fedc2fdf79ba57f886b4aca8a7d31857ba3ee8281f/markupsafe-3.0.3-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:5678211cb9333a6468fb8d8be0305520aa073f50d17f089b5b4b477ea6e67fdc", size = 23672, upload-time = "2025-09-27T18:37:25.271Z" }, + { url = "https://files.pythonhosted.org/packages/fb/df/5bd7a48c256faecd1d36edc13133e51397e41b73bb77e1a69deab746ebac/markupsafe-3.0.3-cp314-cp314t-win32.whl", hash = "sha256:915c04ba3851909ce68ccc2b8e2cd691618c4dc4c4232fb7982bca3f41fd8c3d", size = 14819, upload-time = "2025-09-27T18:37:26.285Z" }, + { url = "https://files.pythonhosted.org/packages/1a/8a/0402ba61a2f16038b48b39bccca271134be00c5c9f0f623208399333c448/markupsafe-3.0.3-cp314-cp314t-win_amd64.whl", hash = "sha256:4faffd047e07c38848ce017e8725090413cd80cbc23d86e55c587bf979e579c9", size = 15426, upload-time = "2025-09-27T18:37:27.316Z" }, + { url = "https://files.pythonhosted.org/packages/70/bc/6f1c2f612465f5fa89b95bead1f44dcb607670fd42891d8fdcd5d039f4f4/markupsafe-3.0.3-cp314-cp314t-win_arm64.whl", hash = "sha256:32001d6a8fc98c8cb5c947787c5d08b0a50663d139f1305bac5885d98d9b40fa", size = 14146, upload-time = "2025-09-27T18:37:28.327Z" }, +] + [[package]] name = "matplotlib-inline" version = "0.2.1" @@ -397,6 +566,15 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/b3/38/89ba8ad64ae25be8de66a6d463314cf1eb366222074cfda9ee839c56a4b4/mdurl-0.1.2-py3-none-any.whl", hash = "sha256:84008a41e51615a49fc9966191ff91509e3c40b939176e643fd50a5c2196b8f8", size = 9979, upload-time = "2022-08-14T12:40:09.779Z" }, ] +[[package]] +name = "mpmath" +version = "1.3.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/e0/47/dd32fa426cc72114383ac549964eecb20ecfd886d1e5ccf5340b55b02f57/mpmath-1.3.0.tar.gz", hash = "sha256:7a28eb2a9774d00c7bc92411c19a89209d5da7c4c9a9e227be8330a23a25b91f", size = 508106, upload-time = "2023-03-07T16:47:11.061Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/43/e3/7d92a15f894aa0c9c4b49b8ee9ac9850d6e63b03c9c32c0367a13ae62209/mpmath-1.3.0-py3-none-any.whl", hash = "sha256:a0b2b9fe80bbcd81a6647ff13108738cfb482d481d826cc0e02f5b35e5c88d2c", size = 536198, upload-time = "2023-03-07T16:47:09.197Z" }, +] + [[package]] name = "msgpack" version = "1.1.2" @@ -453,6 +631,15 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/79/7b/2c79738432f5c924bef5071f933bcc9efd0473bac3b4aa584a6f7c1c8df8/mypy_extensions-1.1.0-py3-none-any.whl", hash = "sha256:1be4cccdb0f2482337c4743e60421de3a356cd97508abadd57d47403e94f5505", size = 4963, upload-time = "2025-04-22T14:54:22.983Z" }, ] +[[package]] +name = "networkx" +version = "3.6.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/6a/51/63fe664f3908c97be9d2e4f1158eb633317598cfa6e1fc14af5383f17512/networkx-3.6.1.tar.gz", hash = "sha256:26b7c357accc0c8cde558ad486283728b65b6a95d85ee1cd66bafab4c8168509", size = 2517025, upload-time = "2025-12-08T17:02:39.908Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9e/c9/b2622292ea83fbb4ec318f5b9ab867d0a28ab43c5717bb85b0a5f6b3b0a4/networkx-3.6.1-py3-none-any.whl", hash = "sha256:d47fbf302e7d9cbbb9e2555a0d267983d2aa476bac30e90dfbe5669bd57f3762", size = 2068504, upload-time = "2025-12-08T17:02:38.159Z" }, +] + [[package]] name = "nodeenv" version = "1.10.0" @@ -462,6 +649,169 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/88/b2/d0896bdcdc8d28a7fc5717c305f1a861c26e18c05047949fb371034d98bd/nodeenv-1.10.0-py2.py3-none-any.whl", hash = "sha256:5bb13e3eed2923615535339b3c620e76779af4cb4c6a90deccc9e36b274d3827", size = 23438, upload-time = "2025-12-20T14:08:52.782Z" }, ] +[[package]] +name = "numpy" +version = "2.4.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/57/fd/0005efbd0af48e55eb3c7208af93f2862d4b1a56cd78e84309a2d959208d/numpy-2.4.2.tar.gz", hash = "sha256:659a6107e31a83c4e33f763942275fd278b21d095094044eb35569e86a21ddae", size = 20723651, upload-time = "2026-01-31T23:13:10.135Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/18/88/b7df6050bf18fdcfb7046286c6535cabbdd2064a3440fca3f069d319c16e/numpy-2.4.2-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:444be170853f1f9d528428eceb55f12918e4fda5d8805480f36a002f1415e09b", size = 16663092, upload-time = "2026-01-31T23:12:04.521Z" }, + { url = "https://files.pythonhosted.org/packages/25/7a/1fee4329abc705a469a4afe6e69b1ef7e915117747886327104a8493a955/numpy-2.4.2-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:d1240d50adff70c2a88217698ca844723068533f3f5c5fa6ee2e3220e3bdb000", size = 14698770, upload-time = "2026-01-31T23:12:06.96Z" }, + { url = "https://files.pythonhosted.org/packages/fb/0b/f9e49ba6c923678ad5bc38181c08ac5e53b7a5754dbca8e581aa1a56b1ff/numpy-2.4.2-cp314-cp314-macosx_14_0_arm64.whl", hash = "sha256:7cdde6de52fb6664b00b056341265441192d1291c130e99183ec0d4b110ff8b1", size = 5208562, upload-time = "2026-01-31T23:12:09.632Z" }, + { url = "https://files.pythonhosted.org/packages/7d/12/d7de8f6f53f9bb76997e5e4c069eda2051e3fe134e9181671c4391677bb2/numpy-2.4.2-cp314-cp314-macosx_14_0_x86_64.whl", hash = "sha256:cda077c2e5b780200b6b3e09d0b42205a3d1c68f30c6dceb90401c13bff8fe74", size = 6543710, upload-time = "2026-01-31T23:12:11.969Z" }, + { url = "https://files.pythonhosted.org/packages/09/63/c66418c2e0268a31a4cf8a8b512685748200f8e8e8ec6c507ce14e773529/numpy-2.4.2-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:d30291931c915b2ab5717c2974bb95ee891a1cf22ebc16a8006bd59cd210d40a", size = 15677205, upload-time = "2026-01-31T23:12:14.33Z" }, + { url = "https://files.pythonhosted.org/packages/5d/6c/7f237821c9642fb2a04d2f1e88b4295677144ca93285fd76eff3bcba858d/numpy-2.4.2-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:bba37bc29d4d85761deed3954a1bc62be7cf462b9510b51d367b769a8c8df325", size = 16611738, upload-time = "2026-01-31T23:12:16.525Z" }, + { url = "https://files.pythonhosted.org/packages/c2/a7/39c4cdda9f019b609b5c473899d87abff092fc908cfe4d1ecb2fcff453b0/numpy-2.4.2-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:b2f0073ed0868db1dcd86e052d37279eef185b9c8db5bf61f30f46adac63c909", size = 17028888, upload-time = "2026-01-31T23:12:19.306Z" }, + { url = "https://files.pythonhosted.org/packages/da/b3/e84bb64bdfea967cc10950d71090ec2d84b49bc691df0025dddb7c26e8e3/numpy-2.4.2-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:7f54844851cdb630ceb623dcec4db3240d1ac13d4990532446761baede94996a", size = 18339556, upload-time = "2026-01-31T23:12:21.816Z" }, + { url = "https://files.pythonhosted.org/packages/88/f5/954a291bc1192a27081706862ac62bb5920fbecfbaa302f64682aa90beed/numpy-2.4.2-cp314-cp314-win32.whl", hash = "sha256:12e26134a0331d8dbd9351620f037ec470b7c75929cb8a1537f6bfe411152a1a", size = 6006899, upload-time = "2026-01-31T23:12:24.14Z" }, + { url = "https://files.pythonhosted.org/packages/05/cb/eff72a91b2efdd1bc98b3b8759f6a1654aa87612fc86e3d87d6fe4f948c4/numpy-2.4.2-cp314-cp314-win_amd64.whl", hash = "sha256:068cdb2d0d644cdb45670810894f6a0600797a69c05f1ac478e8d31670b8ee75", size = 12443072, upload-time = "2026-01-31T23:12:26.33Z" }, + { url = "https://files.pythonhosted.org/packages/37/75/62726948db36a56428fce4ba80a115716dc4fad6a3a4352487f8bb950966/numpy-2.4.2-cp314-cp314-win_arm64.whl", hash = "sha256:6ed0be1ee58eef41231a5c943d7d1375f093142702d5723ca2eb07db9b934b05", size = 10494886, upload-time = "2026-01-31T23:12:28.488Z" }, + { url = "https://files.pythonhosted.org/packages/36/2f/ee93744f1e0661dc267e4b21940870cabfae187c092e1433b77b09b50ac4/numpy-2.4.2-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:98f16a80e917003a12c0580f97b5f875853ebc33e2eaa4bccfc8201ac6869308", size = 14818567, upload-time = "2026-01-31T23:12:30.709Z" }, + { url = "https://files.pythonhosted.org/packages/a7/24/6535212add7d76ff938d8bdc654f53f88d35cddedf807a599e180dcb8e66/numpy-2.4.2-cp314-cp314t-macosx_14_0_arm64.whl", hash = "sha256:20abd069b9cda45874498b245c8015b18ace6de8546bf50dfa8cea1696ed06ef", size = 5328372, upload-time = "2026-01-31T23:12:32.962Z" }, + { url = "https://files.pythonhosted.org/packages/5e/9d/c48f0a035725f925634bf6b8994253b43f2047f6778a54147d7e213bc5a7/numpy-2.4.2-cp314-cp314t-macosx_14_0_x86_64.whl", hash = "sha256:e98c97502435b53741540a5717a6749ac2ada901056c7db951d33e11c885cc7d", size = 6649306, upload-time = "2026-01-31T23:12:34.797Z" }, + { url = "https://files.pythonhosted.org/packages/81/05/7c73a9574cd4a53a25907bad38b59ac83919c0ddc8234ec157f344d57d9a/numpy-2.4.2-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:da6cad4e82cb893db4b69105c604d805e0c3ce11501a55b5e9f9083b47d2ffe8", size = 15722394, upload-time = "2026-01-31T23:12:36.565Z" }, + { url = "https://files.pythonhosted.org/packages/35/fa/4de10089f21fc7d18442c4a767ab156b25c2a6eaf187c0db6d9ecdaeb43f/numpy-2.4.2-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:9e4424677ce4b47fe73c8b5556d876571f7c6945d264201180db2dc34f676ab5", size = 16653343, upload-time = "2026-01-31T23:12:39.188Z" }, + { url = "https://files.pythonhosted.org/packages/b8/f9/d33e4ffc857f3763a57aa85650f2e82486832d7492280ac21ba9efda80da/numpy-2.4.2-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:2b8f157c8a6f20eb657e240f8985cc135598b2b46985c5bccbde7616dc9c6b1e", size = 17078045, upload-time = "2026-01-31T23:12:42.041Z" }, + { url = "https://files.pythonhosted.org/packages/c8/b8/54bdb43b6225badbea6389fa038c4ef868c44f5890f95dd530a218706da3/numpy-2.4.2-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:5daf6f3914a733336dab21a05cdec343144600e964d2fcdabaac0c0269874b2a", size = 18380024, upload-time = "2026-01-31T23:12:44.331Z" }, + { url = "https://files.pythonhosted.org/packages/a5/55/6e1a61ded7af8df04016d81b5b02daa59f2ea9252ee0397cb9f631efe9e5/numpy-2.4.2-cp314-cp314t-win32.whl", hash = "sha256:8c50dd1fc8826f5b26a5ee4d77ca55d88a895f4e4819c7ecc2a9f5905047a443", size = 6153937, upload-time = "2026-01-31T23:12:47.229Z" }, + { url = "https://files.pythonhosted.org/packages/45/aa/fa6118d1ed6d776b0983f3ceac9b1a5558e80df9365b1c3aa6d42bf9eee4/numpy-2.4.2-cp314-cp314t-win_amd64.whl", hash = "sha256:fcf92bee92742edd401ba41135185866f7026c502617f422eb432cfeca4fe236", size = 12631844, upload-time = "2026-01-31T23:12:48.997Z" }, + { url = "https://files.pythonhosted.org/packages/32/0a/2ec5deea6dcd158f254a7b372fb09cfba5719419c8d66343bab35237b3fb/numpy-2.4.2-cp314-cp314t-win_arm64.whl", hash = "sha256:1f92f53998a17265194018d1cc321b2e96e900ca52d54c7c77837b71b9465181", size = 10565379, upload-time = "2026-01-31T23:12:51.345Z" }, +] + +[[package]] +name = "nvidia-cublas-cu12" +version = "12.8.4.1" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/dc/61/e24b560ab2e2eaeb3c839129175fb330dfcfc29e5203196e5541a4c44682/nvidia_cublas_cu12-12.8.4.1-py3-none-manylinux_2_27_x86_64.whl", hash = "sha256:8ac4e771d5a348c551b2a426eda6193c19aa630236b418086020df5ba9667142", size = 594346921, upload-time = "2025-03-07T01:44:31.254Z" }, +] + +[[package]] +name = "nvidia-cuda-cupti-cu12" +version = "12.8.90" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f8/02/2adcaa145158bf1a8295d83591d22e4103dbfd821bcaf6f3f53151ca4ffa/nvidia_cuda_cupti_cu12-12.8.90-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:ea0cb07ebda26bb9b29ba82cda34849e73c166c18162d3913575b0c9db9a6182", size = 10248621, upload-time = "2025-03-07T01:40:21.213Z" }, +] + +[[package]] +name = "nvidia-cuda-nvrtc-cu12" +version = "12.8.93" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/05/6b/32f747947df2da6994e999492ab306a903659555dddc0fbdeb9d71f75e52/nvidia_cuda_nvrtc_cu12-12.8.93-py3-none-manylinux2010_x86_64.manylinux_2_12_x86_64.whl", hash = "sha256:a7756528852ef889772a84c6cd89d41dfa74667e24cca16bb31f8f061e3e9994", size = 88040029, upload-time = "2025-03-07T01:42:13.562Z" }, +] + +[[package]] +name = "nvidia-cuda-runtime-cu12" +version = "12.8.90" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0d/9b/a997b638fcd068ad6e4d53b8551a7d30fe8b404d6f1804abf1df69838932/nvidia_cuda_runtime_cu12-12.8.90-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:adade8dcbd0edf427b7204d480d6066d33902cab2a4707dcfc48a2d0fd44ab90", size = 954765, upload-time = "2025-03-07T01:40:01.615Z" }, +] + +[[package]] +name = "nvidia-cudnn-cu12" +version = "9.10.2.21" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "nvidia-cublas-cu12" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/ba/51/e123d997aa098c61d029f76663dedbfb9bc8dcf8c60cbd6adbe42f76d049/nvidia_cudnn_cu12-9.10.2.21-py3-none-manylinux_2_27_x86_64.whl", hash = "sha256:949452be657fa16687d0930933f032835951ef0892b37d2d53824d1a84dc97a8", size = 706758467, upload-time = "2025-06-06T21:54:08.597Z" }, +] + +[[package]] +name = "nvidia-cufft-cu12" +version = "11.3.3.83" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "nvidia-nvjitlink-cu12" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/1f/13/ee4e00f30e676b66ae65b4f08cb5bcbb8392c03f54f2d5413ea99a5d1c80/nvidia_cufft_cu12-11.3.3.83-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:4d2dd21ec0b88cf61b62e6b43564355e5222e4a3fb394cac0db101f2dd0d4f74", size = 193118695, upload-time = "2025-03-07T01:45:27.821Z" }, +] + +[[package]] +name = "nvidia-cufile-cu12" +version = "1.13.1.3" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/bb/fe/1bcba1dfbfb8d01be8d93f07bfc502c93fa23afa6fd5ab3fc7c1df71038a/nvidia_cufile_cu12-1.13.1.3-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:1d069003be650e131b21c932ec3d8969c1715379251f8d23a1860554b1cb24fc", size = 1197834, upload-time = "2025-03-07T01:45:50.723Z" }, +] + +[[package]] +name = "nvidia-curand-cu12" +version = "10.3.9.90" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/fb/aa/6584b56dc84ebe9cf93226a5cde4d99080c8e90ab40f0c27bda7a0f29aa1/nvidia_curand_cu12-10.3.9.90-py3-none-manylinux_2_27_x86_64.whl", hash = "sha256:b32331d4f4df5d6eefa0554c565b626c7216f87a06a4f56fab27c3b68a830ec9", size = 63619976, upload-time = "2025-03-07T01:46:23.323Z" }, +] + +[[package]] +name = "nvidia-cusolver-cu12" +version = "11.7.3.90" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "nvidia-cublas-cu12" }, + { name = "nvidia-cusparse-cu12" }, + { name = "nvidia-nvjitlink-cu12" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/85/48/9a13d2975803e8cf2777d5ed57b87a0b6ca2cc795f9a4f59796a910bfb80/nvidia_cusolver_cu12-11.7.3.90-py3-none-manylinux_2_27_x86_64.whl", hash = "sha256:4376c11ad263152bd50ea295c05370360776f8c3427b30991df774f9fb26c450", size = 267506905, upload-time = "2025-03-07T01:47:16.273Z" }, +] + +[[package]] +name = "nvidia-cusparse-cu12" +version = "12.5.8.93" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "nvidia-nvjitlink-cu12" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/c2/f5/e1854cb2f2bcd4280c44736c93550cc300ff4b8c95ebe370d0aa7d2b473d/nvidia_cusparse_cu12-12.5.8.93-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:1ec05d76bbbd8b61b06a80e1eaf8cf4959c3d4ce8e711b65ebd0443bb0ebb13b", size = 288216466, upload-time = "2025-03-07T01:48:13.779Z" }, +] + +[[package]] +name = "nvidia-cusparselt-cu12" +version = "0.7.1" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/56/79/12978b96bd44274fe38b5dde5cfb660b1d114f70a65ef962bcbbed99b549/nvidia_cusparselt_cu12-0.7.1-py3-none-manylinux2014_x86_64.whl", hash = "sha256:f1bb701d6b930d5a7cea44c19ceb973311500847f81b634d802b7b539dc55623", size = 287193691, upload-time = "2025-02-26T00:15:44.104Z" }, +] + +[[package]] +name = "nvidia-nccl-cu12" +version = "2.27.5" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/6e/89/f7a07dc961b60645dbbf42e80f2bc85ade7feb9a491b11a1e973aa00071f/nvidia_nccl_cu12-2.27.5-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:ad730cf15cb5d25fe849c6e6ca9eb5b76db16a80f13f425ac68d8e2e55624457", size = 322348229, upload-time = "2025-06-26T04:11:28.385Z" }, +] + +[[package]] +name = "nvidia-nvjitlink-cu12" +version = "12.8.93" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f6/74/86a07f1d0f42998ca31312f998bd3b9a7eff7f52378f4f270c8679c77fb9/nvidia_nvjitlink_cu12-12.8.93-py3-none-manylinux2010_x86_64.manylinux_2_12_x86_64.whl", hash = "sha256:81ff63371a7ebd6e6451970684f916be2eab07321b73c9d244dc2b4da7f73b88", size = 39254836, upload-time = "2025-03-07T01:49:55.661Z" }, +] + +[[package]] +name = "nvidia-nvshmem-cu12" +version = "3.4.5" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b5/09/6ea3ea725f82e1e76684f0708bbedd871fc96da89945adeba65c3835a64c/nvidia_nvshmem_cu12-3.4.5-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:042f2500f24c021db8a06c5eec2539027d57460e1c1a762055a6554f72c369bd", size = 139103095, upload-time = "2025-09-06T00:32:31.266Z" }, +] + +[[package]] +name = "nvidia-nvtx-cu12" +version = "12.8.90" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a2/eb/86626c1bbc2edb86323022371c39aa48df6fd8b0a1647bc274577f72e90b/nvidia_nvtx_cu12-12.8.90-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:5b17e2001cc0d751a5bc2c6ec6d26ad95913324a4adb86788c944f8ce9ba441f", size = 89954, upload-time = "2025-03-07T01:42:44.131Z" }, +] + [[package]] name = "packageurl-python" version = "0.17.6" @@ -611,6 +961,28 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/84/03/0d3ce49e2505ae70cf43bc5bb3033955d2fc9f932163e84dc0779cc47f48/prompt_toolkit-3.0.52-py3-none-any.whl", hash = "sha256:9aac639a3bbd33284347de5ad8d68ecc044b91a762dc39b7c21095fcd6a19955", size = 391431, upload-time = "2025-08-27T15:23:59.498Z" }, ] +[[package]] +name = "psutil" +version = "7.2.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/aa/c6/d1ddf4abb55e93cebc4f2ed8b5d6dbad109ecb8d63748dd2b20ab5e57ebe/psutil-7.2.2.tar.gz", hash = "sha256:0746f5f8d406af344fd547f1c8daa5f5c33dbc293bb8d6a16d80b4bb88f59372", size = 493740, upload-time = "2026-01-28T18:14:54.428Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/81/69/ef179ab5ca24f32acc1dac0c247fd6a13b501fd5534dbae0e05a1c48b66d/psutil-7.2.2-cp314-cp314t-macosx_10_15_x86_64.whl", hash = "sha256:eed63d3b4d62449571547b60578c5b2c4bcccc5387148db46e0c2313dad0ee00", size = 130664, upload-time = "2026-01-28T18:15:09.469Z" }, + { url = "https://files.pythonhosted.org/packages/7b/64/665248b557a236d3fa9efc378d60d95ef56dd0a490c2cd37dafc7660d4a9/psutil-7.2.2-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:7b6d09433a10592ce39b13d7be5a54fbac1d1228ed29abc880fb23df7cb694c9", size = 131087, upload-time = "2026-01-28T18:15:11.724Z" }, + { url = "https://files.pythonhosted.org/packages/d5/2e/e6782744700d6759ebce3043dcfa661fb61e2fb752b91cdeae9af12c2178/psutil-7.2.2-cp314-cp314t-manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:1fa4ecf83bcdf6e6c8f4449aff98eefb5d0604bf88cb883d7da3d8d2d909546a", size = 182383, upload-time = "2026-01-28T18:15:13.445Z" }, + { url = "https://files.pythonhosted.org/packages/57/49/0a41cefd10cb7505cdc04dab3eacf24c0c2cb158a998b8c7b1d27ee2c1f5/psutil-7.2.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:e452c464a02e7dc7822a05d25db4cde564444a67e58539a00f929c51eddda0cf", size = 185210, upload-time = "2026-01-28T18:15:16.002Z" }, + { url = "https://files.pythonhosted.org/packages/dd/2c/ff9bfb544f283ba5f83ba725a3c5fec6d6b10b8f27ac1dc641c473dc390d/psutil-7.2.2-cp314-cp314t-win_amd64.whl", hash = "sha256:c7663d4e37f13e884d13994247449e9f8f574bc4655d509c3b95e9ec9e2b9dc1", size = 141228, upload-time = "2026-01-28T18:15:18.385Z" }, + { url = "https://files.pythonhosted.org/packages/f2/fc/f8d9c31db14fcec13748d373e668bc3bed94d9077dbc17fb0eebc073233c/psutil-7.2.2-cp314-cp314t-win_arm64.whl", hash = "sha256:11fe5a4f613759764e79c65cf11ebdf26e33d6dd34336f8a337aa2996d71c841", size = 136284, upload-time = "2026-01-28T18:15:19.912Z" }, + { url = "https://files.pythonhosted.org/packages/e7/36/5ee6e05c9bd427237b11b3937ad82bb8ad2752d72c6969314590dd0c2f6e/psutil-7.2.2-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:ed0cace939114f62738d808fdcecd4c869222507e266e574799e9c0faa17d486", size = 129090, upload-time = "2026-01-28T18:15:22.168Z" }, + { url = "https://files.pythonhosted.org/packages/80/c4/f5af4c1ca8c1eeb2e92ccca14ce8effdeec651d5ab6053c589b074eda6e1/psutil-7.2.2-cp36-abi3-macosx_11_0_arm64.whl", hash = "sha256:1a7b04c10f32cc88ab39cbf606e117fd74721c831c98a27dc04578deb0c16979", size = 129859, upload-time = "2026-01-28T18:15:23.795Z" }, + { url = "https://files.pythonhosted.org/packages/b5/70/5d8df3b09e25bce090399cf48e452d25c935ab72dad19406c77f4e828045/psutil-7.2.2-cp36-abi3-manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:076a2d2f923fd4821644f5ba89f059523da90dc9014e85f8e45a5774ca5bc6f9", size = 155560, upload-time = "2026-01-28T18:15:25.976Z" }, + { url = "https://files.pythonhosted.org/packages/63/65/37648c0c158dc222aba51c089eb3bdfa238e621674dc42d48706e639204f/psutil-7.2.2-cp36-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b0726cecd84f9474419d67252add4ac0cd9811b04d61123054b9fb6f57df6e9e", size = 156997, upload-time = "2026-01-28T18:15:27.794Z" }, + { url = "https://files.pythonhosted.org/packages/8e/13/125093eadae863ce03c6ffdbae9929430d116a246ef69866dad94da3bfbc/psutil-7.2.2-cp36-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:fd04ef36b4a6d599bbdb225dd1d3f51e00105f6d48a28f006da7f9822f2606d8", size = 148972, upload-time = "2026-01-28T18:15:29.342Z" }, + { url = "https://files.pythonhosted.org/packages/04/78/0acd37ca84ce3ddffaa92ef0f571e073faa6d8ff1f0559ab1272188ea2be/psutil-7.2.2-cp36-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:b58fabe35e80b264a4e3bb23e6b96f9e45a3df7fb7eed419ac0e5947c61e47cc", size = 148266, upload-time = "2026-01-28T18:15:31.597Z" }, + { url = "https://files.pythonhosted.org/packages/b4/90/e2159492b5426be0c1fef7acba807a03511f97c5f86b3caeda6ad92351a7/psutil-7.2.2-cp37-abi3-win_amd64.whl", hash = "sha256:eb7e81434c8d223ec4a219b5fc1c47d0417b12be7ea866e24fb5ad6e84b3d988", size = 137737, upload-time = "2026-01-28T18:15:33.849Z" }, + { url = "https://files.pythonhosted.org/packages/8c/c7/7bb2e321574b10df20cbde462a94e2b71d05f9bbda251ef27d104668306a/psutil-7.2.2-cp37-abi3-win_arm64.whl", hash = "sha256:8c233660f575a5a89e6d4cb65d9f938126312bca76d8fe087b947b3a1aaac9ee", size = 134617, upload-time = "2026-01-28T18:15:36.514Z" }, +] + [[package]] name = "ptyprocess" version = "0.7.0" @@ -688,17 +1060,28 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/06/54/82a6e2ef37f0f23dccac604b9585bdcbd0698604feb64807dcb72853693e/python_discovery-1.1.0-py3-none-any.whl", hash = "sha256:a162893b8809727f54594a99ad2179d2ede4bf953e12d4c7abc3cc9cdbd1437b", size = 30687, upload-time = "2026-02-26T09:42:48.548Z" }, ] +[[package]] +name = "python-dotenv" +version = "1.2.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/82/ed/0301aeeac3e5353ef3d94b6ec08bbcabd04a72018415dcb29e588514bba8/python_dotenv-1.2.2.tar.gz", hash = "sha256:2c371a91fbd7ba082c2c1dc1f8bf89ca22564a087c2c287cd9b662adde799cf3", size = 50135, upload-time = "2026-03-01T16:00:26.196Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0b/d7/1959b9648791274998a9c3526f6d0ec8fd2233e4d4acce81bbae76b44b2a/python_dotenv-1.2.2-py3-none-any.whl", hash = "sha256:1d8214789a24de455a8b8bd8ae6fe3c6b69a5e3d64aa8a8e5d68e694bbcb285a", size = 22101, upload-time = "2026-03-01T16:00:25.09Z" }, +] + [[package]] name = "python-lambda-template" version = "2.0.0" source = { virtual = "." } dependencies = [ + { name = "python-dotenv" }, { name = "sentry-sdk" }, + { name = "transformers", extra = ["torch"] }, ] [package.dev-dependencies] dev = [ - { name = "black" }, + { name = "aws-lambda-typing" }, { name = "coveralls" }, { name = "ipython" }, { name = "mypy" }, @@ -709,11 +1092,15 @@ dev = [ ] [package.metadata] -requires-dist = [{ name = "sentry-sdk", specifier = ">=2.29.1" }] +requires-dist = [ + { name = "python-dotenv", specifier = ">=1.2.2" }, + { name = "sentry-sdk", specifier = ">=2.29.1" }, + { name = "transformers", extras = ["torch"], specifier = ">=5.2.0" }, +] [package.metadata.requires-dev] dev = [ - { name = "black", specifier = ">=26.1.0" }, + { name = "aws-lambda-typing", specifier = ">=2.2.0" }, { name = "coveralls", specifier = ">=4.0.1" }, { name = "ipython", specifier = ">=9.2.0" }, { name = "mypy", specifier = ">=1.15.0" }, @@ -723,25 +1110,6 @@ dev = [ { name = "ruff", specifier = ">=0.11.11" }, ] -[[package]] -name = "pytokens" -version = "0.4.1" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/b6/34/b4e015b99031667a7b960f888889c5bd34ef585c85e1cb56a594b92836ac/pytokens-0.4.1.tar.gz", hash = "sha256:292052fe80923aae2260c073f822ceba21f3872ced9a68bb7953b348e561179a", size = 23015, upload-time = "2026-01-30T01:03:45.924Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/8f/a7/b470f672e6fc5fee0a01d9e75005a0e617e162381974213a945fcd274843/pytokens-0.4.1-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:4a14d5f5fc78ce85e426aa159489e2d5961acf0e47575e08f35584009178e321", size = 160821, upload-time = "2026-01-30T01:03:19.684Z" }, - { url = "https://files.pythonhosted.org/packages/80/98/e83a36fe8d170c911f864bfded690d2542bfcfacb9c649d11a9e6eb9dc41/pytokens-0.4.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:97f50fd18543be72da51dd505e2ed20d2228c74e0464e4262e4899797803d7fa", size = 254263, upload-time = "2026-01-30T01:03:20.834Z" }, - { url = "https://files.pythonhosted.org/packages/0f/95/70d7041273890f9f97a24234c00b746e8da86df462620194cef1d411ddeb/pytokens-0.4.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:dc74c035f9bfca0255c1af77ddd2d6ae8419012805453e4b0e7513e17904545d", size = 268071, upload-time = "2026-01-30T01:03:21.888Z" }, - { url = "https://files.pythonhosted.org/packages/da/79/76e6d09ae19c99404656d7db9c35dfd20f2086f3eb6ecb496b5b31163bad/pytokens-0.4.1-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:f66a6bbe741bd431f6d741e617e0f39ec7257ca1f89089593479347cc4d13324", size = 271716, upload-time = "2026-01-30T01:03:23.633Z" }, - { url = "https://files.pythonhosted.org/packages/79/37/482e55fa1602e0a7ff012661d8c946bafdc05e480ea5a32f4f7e336d4aa9/pytokens-0.4.1-cp314-cp314-win_amd64.whl", hash = "sha256:b35d7e5ad269804f6697727702da3c517bb8a5228afa450ab0fa787732055fc9", size = 104539, upload-time = "2026-01-30T01:03:24.788Z" }, - { url = "https://files.pythonhosted.org/packages/30/e8/20e7db907c23f3d63b0be3b8a4fd1927f6da2395f5bcc7f72242bb963dfe/pytokens-0.4.1-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:8fcb9ba3709ff77e77f1c7022ff11d13553f3c30299a9fe246a166903e9091eb", size = 168474, upload-time = "2026-01-30T01:03:26.428Z" }, - { url = "https://files.pythonhosted.org/packages/d6/81/88a95ee9fafdd8f5f3452107748fd04c24930d500b9aba9738f3ade642cc/pytokens-0.4.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:79fc6b8699564e1f9b521582c35435f1bd32dd06822322ec44afdeba666d8cb3", size = 290473, upload-time = "2026-01-30T01:03:27.415Z" }, - { url = "https://files.pythonhosted.org/packages/cf/35/3aa899645e29b6375b4aed9f8d21df219e7c958c4c186b465e42ee0a06bf/pytokens-0.4.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:d31b97b3de0f61571a124a00ffe9a81fb9939146c122c11060725bd5aea79975", size = 303485, upload-time = "2026-01-30T01:03:28.558Z" }, - { url = "https://files.pythonhosted.org/packages/52/a0/07907b6ff512674d9b201859f7d212298c44933633c946703a20c25e9d81/pytokens-0.4.1-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:967cf6e3fd4adf7de8fc73cd3043754ae79c36475c1c11d514fc72cf5490094a", size = 306698, upload-time = "2026-01-30T01:03:29.653Z" }, - { url = "https://files.pythonhosted.org/packages/39/2a/cbbf9250020a4a8dd53ba83a46c097b69e5eb49dd14e708f496f548c6612/pytokens-0.4.1-cp314-cp314t-win_amd64.whl", hash = "sha256:584c80c24b078eec1e227079d56dc22ff755e0ba8654d8383b2c549107528918", size = 116287, upload-time = "2026-01-30T01:03:30.912Z" }, - { url = "https://files.pythonhosted.org/packages/c6/78/397db326746f0a342855b81216ae1f0a32965deccfd7c830a2dbc66d2483/pytokens-0.4.1-py3-none-any.whl", hash = "sha256:26cef14744a8385f35d0e095dc8b3a7583f6c953c2e3d269c7f82484bf5ad2de", size = 13729, upload-time = "2026-01-30T01:03:45.029Z" }, -] - [[package]] name = "pyyaml" version = "6.0.3" @@ -768,6 +1136,46 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/f1/12/de94a39c2ef588c7e6455cfbe7343d3b2dc9d6b6b2f40c4c6565744c873d/pyyaml-6.0.3-cp314-cp314t-win_arm64.whl", hash = "sha256:ebc55a14a21cb14062aa4162f906cd962b28e2e9ea38f9b4391244cd8de4ae0b", size = 149341, upload-time = "2025-09-25T21:32:56.828Z" }, ] +[[package]] +name = "regex" +version = "2026.2.28" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/8b/71/41455aa99a5a5ac1eaf311f5d8efd9ce6433c03ac1e0962de163350d0d97/regex-2026.2.28.tar.gz", hash = "sha256:a729e47d418ea11d03469f321aaf67cdee8954cde3ff2cf8403ab87951ad10f2", size = 415184, upload-time = "2026-02-28T02:19:42.792Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/cf/03/691015f7a7cb1ed6dacb2ea5de5682e4858e05a4c5506b2839cd533bbcd6/regex-2026.2.28-cp314-cp314-macosx_10_13_universal2.whl", hash = "sha256:78454178c7df31372ea737996fb7f36b3c2c92cccc641d251e072478afb4babc", size = 489497, upload-time = "2026-02-28T02:18:30.889Z" }, + { url = "https://files.pythonhosted.org/packages/c6/ba/8db8fd19afcbfa0e1036eaa70c05f20ca8405817d4ad7a38a6b4c2f031ac/regex-2026.2.28-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:5d10303dd18cedfd4d095543998404df656088240bcfd3cd20a8f95b861f74bd", size = 291295, upload-time = "2026-02-28T02:18:33.426Z" }, + { url = "https://files.pythonhosted.org/packages/5a/79/9aa0caf089e8defef9b857b52fc53801f62ff868e19e5c83d4a96612eba1/regex-2026.2.28-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:19a9c9e0a8f24f39d575a6a854d516b48ffe4cbdcb9de55cb0570a032556ecff", size = 289275, upload-time = "2026-02-28T02:18:35.247Z" }, + { url = "https://files.pythonhosted.org/packages/eb/26/ee53117066a30ef9c883bf1127eece08308ccf8ccd45c45a966e7a665385/regex-2026.2.28-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:09500be324f49b470d907b3ef8af9afe857f5cca486f853853f7945ddbf75911", size = 797176, upload-time = "2026-02-28T02:18:37.15Z" }, + { url = "https://files.pythonhosted.org/packages/05/1b/67fb0495a97259925f343ae78b5d24d4a6624356ae138b57f18bd43006e4/regex-2026.2.28-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:fb1c4ff62277d87a7335f2c1ea4e0387b8f2b3ad88a64efd9943906aafad4f33", size = 863813, upload-time = "2026-02-28T02:18:39.478Z" }, + { url = "https://files.pythonhosted.org/packages/a0/1d/93ac9bbafc53618091c685c7ed40239a90bf9f2a82c983f0baa97cb7ae07/regex-2026.2.28-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:b8b3f1be1738feadc69f62daa250c933e85c6f34fa378f54a7ff43807c1b9117", size = 908678, upload-time = "2026-02-28T02:18:41.619Z" }, + { url = "https://files.pythonhosted.org/packages/c7/7a/a8f5e0561702b25239846a16349feece59712ae20598ebb205580332a471/regex-2026.2.28-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:dc8ed8c3f41c27acb83f7b6a9eb727a73fc6663441890c5cb3426a5f6a91ce7d", size = 801528, upload-time = "2026-02-28T02:18:43.624Z" }, + { url = "https://files.pythonhosted.org/packages/96/5d/ed6d4cbde80309854b1b9f42d9062fee38ade15f7eb4909f6ef2440403b5/regex-2026.2.28-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:fa539be029844c0ce1114762d2952ab6cfdd7c7c9bd72e0db26b94c3c36dcc5a", size = 775373, upload-time = "2026-02-28T02:18:46.102Z" }, + { url = "https://files.pythonhosted.org/packages/6a/e9/6e53c34e8068b9deec3e87210086ecb5b9efebdefca6b0d3fa43d66dcecb/regex-2026.2.28-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:7900157786428a79615a8264dac1f12c9b02957c473c8110c6b1f972dcecaddf", size = 784859, upload-time = "2026-02-28T02:18:48.269Z" }, + { url = "https://files.pythonhosted.org/packages/48/3c/736e1c7ca7f0dcd2ae33819888fdc69058a349b7e5e84bc3e2f296bbf794/regex-2026.2.28-cp314-cp314-musllinux_1_2_ppc64le.whl", hash = "sha256:0b1d2b07614d95fa2bf8a63fd1e98bd8fa2b4848dc91b1efbc8ba219fdd73952", size = 857813, upload-time = "2026-02-28T02:18:50.576Z" }, + { url = "https://files.pythonhosted.org/packages/6e/7c/48c4659ad9da61f58e79dbe8c05223e0006696b603c16eb6b5cbfbb52c27/regex-2026.2.28-cp314-cp314-musllinux_1_2_riscv64.whl", hash = "sha256:b389c61aa28a79c2e0527ac36da579869c2e235a5b208a12c5b5318cda2501d8", size = 763705, upload-time = "2026-02-28T02:18:52.59Z" }, + { url = "https://files.pythonhosted.org/packages/cf/a1/bc1c261789283128165f71b71b4b221dd1b79c77023752a6074c102f18d8/regex-2026.2.28-cp314-cp314-musllinux_1_2_s390x.whl", hash = "sha256:f467cb602f03fbd1ab1908f68b53c649ce393fde056628dc8c7e634dab6bfc07", size = 848734, upload-time = "2026-02-28T02:18:54.595Z" }, + { url = "https://files.pythonhosted.org/packages/10/d8/979407faf1397036e25a5ae778157366a911c0f382c62501009f4957cf86/regex-2026.2.28-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:e8c8cb2deba42f5ec1ede46374e990f8adc5e6456a57ac1a261b19be6f28e4e6", size = 789871, upload-time = "2026-02-28T02:18:57.34Z" }, + { url = "https://files.pythonhosted.org/packages/03/23/da716821277115fcb1f4e3de1e5dc5023a1e6533598c486abf5448612579/regex-2026.2.28-cp314-cp314-win32.whl", hash = "sha256:9036b400b20e4858d56d117108d7813ed07bb7803e3eed766675862131135ca6", size = 271825, upload-time = "2026-02-28T02:18:59.202Z" }, + { url = "https://files.pythonhosted.org/packages/91/ff/90696f535d978d5f16a52a419be2770a8d8a0e7e0cfecdbfc31313df7fab/regex-2026.2.28-cp314-cp314-win_amd64.whl", hash = "sha256:1d367257cd86c1cbb97ea94e77b373a0bbc2224976e247f173d19e8f18b4afa7", size = 280548, upload-time = "2026-02-28T02:19:01.049Z" }, + { url = "https://files.pythonhosted.org/packages/69/f9/5e1b5652fc0af3fcdf7677e7df3ad2a0d47d669b34ac29a63bb177bb731b/regex-2026.2.28-cp314-cp314-win_arm64.whl", hash = "sha256:5e68192bb3a1d6fb2836da24aa494e413ea65853a21505e142e5b1064a595f3d", size = 273444, upload-time = "2026-02-28T02:19:03.255Z" }, + { url = "https://files.pythonhosted.org/packages/d3/eb/8389f9e940ac89bcf58d185e230a677b4fd07c5f9b917603ad5c0f8fa8fe/regex-2026.2.28-cp314-cp314t-macosx_10_13_universal2.whl", hash = "sha256:a5dac14d0872eeb35260a8e30bac07ddf22adc1e3a0635b52b02e180d17c9c7e", size = 492546, upload-time = "2026-02-28T02:19:05.378Z" }, + { url = "https://files.pythonhosted.org/packages/7b/c7/09441d27ce2a6fa6a61ea3150ea4639c1dcda9b31b2ea07b80d6937b24dd/regex-2026.2.28-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:ec0c608b7a7465ffadb344ed7c987ff2f11ee03f6a130b569aa74d8a70e8333c", size = 292986, upload-time = "2026-02-28T02:19:07.24Z" }, + { url = "https://files.pythonhosted.org/packages/fb/69/4144b60ed7760a6bd235e4087041f487aa4aa62b45618ce018b0c14833ea/regex-2026.2.28-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:c7815afb0ca45456613fdaf60ea9c993715511c8d53a83bc468305cbc0ee23c7", size = 291518, upload-time = "2026-02-28T02:19:09.698Z" }, + { url = "https://files.pythonhosted.org/packages/2d/be/77e5426cf5948c82f98c53582009ca9e94938c71f73a8918474f2e2990bb/regex-2026.2.28-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b059e71ec363968671693a78c5053bd9cb2fe410f9b8e4657e88377ebd603a2e", size = 809464, upload-time = "2026-02-28T02:19:12.494Z" }, + { url = "https://files.pythonhosted.org/packages/45/99/2c8c5ac90dc7d05c6e7d8e72c6a3599dc08cd577ac476898e91ca787d7f1/regex-2026.2.28-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:b8cf76f1a29f0e99dcfd7aef1551a9827588aae5a737fe31442021165f1920dc", size = 869553, upload-time = "2026-02-28T02:19:15.151Z" }, + { url = "https://files.pythonhosted.org/packages/53/34/daa66a342f0271e7737003abf6c3097aa0498d58c668dbd88362ef94eb5d/regex-2026.2.28-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:180e08a435a0319e6a4821c3468da18dc7001987e1c17ae1335488dfe7518dd8", size = 915289, upload-time = "2026-02-28T02:19:17.331Z" }, + { url = "https://files.pythonhosted.org/packages/c5/c7/e22c2aaf0a12e7e22ab19b004bb78d32ca1ecc7ef245949935463c5567de/regex-2026.2.28-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:1e496956106fd59ba6322a8ea17141a27c5040e5ee8f9433ae92d4e5204462a0", size = 812156, upload-time = "2026-02-28T02:19:20.011Z" }, + { url = "https://files.pythonhosted.org/packages/7f/bb/2dc18c1efd9051cf389cd0d7a3a4d90f6804b9fff3a51b5dc3c85b935f71/regex-2026.2.28-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:bba2b18d70eeb7b79950f12f633beeecd923f7c9ad6f6bae28e59b4cb3ab046b", size = 782215, upload-time = "2026-02-28T02:19:22.047Z" }, + { url = "https://files.pythonhosted.org/packages/17/1e/9e4ec9b9013931faa32226ec4aa3c71fe664a6d8a2b91ac56442128b332f/regex-2026.2.28-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:6db7bfae0f8a2793ff1f7021468ea55e2699d0790eb58ee6ab36ae43aa00bc5b", size = 798925, upload-time = "2026-02-28T02:19:24.173Z" }, + { url = "https://files.pythonhosted.org/packages/71/57/a505927e449a9ccb41e2cc8d735e2abe3444b0213d1cf9cb364a8c1f2524/regex-2026.2.28-cp314-cp314t-musllinux_1_2_ppc64le.whl", hash = "sha256:d0b02e8b7e5874b48ae0f077ecca61c1a6a9f9895e9c6dfb191b55b242862033", size = 864701, upload-time = "2026-02-28T02:19:26.376Z" }, + { url = "https://files.pythonhosted.org/packages/a6/ad/c62cb60cdd93e13eac5b3d9d6bd5d284225ed0e3329426f94d2552dd7cca/regex-2026.2.28-cp314-cp314t-musllinux_1_2_riscv64.whl", hash = "sha256:25b6eb660c5cf4b8c3407a1ed462abba26a926cc9965e164268a3267bcc06a43", size = 770899, upload-time = "2026-02-28T02:19:29.38Z" }, + { url = "https://files.pythonhosted.org/packages/3c/5a/874f861f5c3d5ab99633e8030dee1bc113db8e0be299d1f4b07f5b5ec349/regex-2026.2.28-cp314-cp314t-musllinux_1_2_s390x.whl", hash = "sha256:5a932ea8ad5d0430351ff9c76c8db34db0d9f53c1d78f06022a21f4e290c5c18", size = 854727, upload-time = "2026-02-28T02:19:31.494Z" }, + { url = "https://files.pythonhosted.org/packages/6b/ca/d2c03b0efde47e13db895b975b2be6a73ed90b8ba963677927283d43bf74/regex-2026.2.28-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:1c2c95e1a2b0f89d01e821ff4de1be4b5d73d1f4b0bf679fa27c1ad8d2327f1a", size = 800366, upload-time = "2026-02-28T02:19:34.248Z" }, + { url = "https://files.pythonhosted.org/packages/14/bd/ee13b20b763b8989f7c75d592bfd5de37dc1181814a2a2747fedcf97e3ba/regex-2026.2.28-cp314-cp314t-win32.whl", hash = "sha256:bbb882061f742eb5d46f2f1bd5304055be0a66b783576de3d7eef1bed4778a6e", size = 274936, upload-time = "2026-02-28T02:19:36.313Z" }, + { url = "https://files.pythonhosted.org/packages/cb/e7/d8020e39414c93af7f0d8688eabcecece44abfd5ce314b21dfda0eebd3d8/regex-2026.2.28-cp314-cp314t-win_amd64.whl", hash = "sha256:6591f281cb44dc13de9585b552cec6fc6cf47fb2fe7a48892295ee9bc4a612f9", size = 284779, upload-time = "2026-02-28T02:19:38.625Z" }, + { url = "https://files.pythonhosted.org/packages/13/c0/ad225f4a405827486f1955283407cf758b6d2fb966712644c5f5aef33d1b/regex-2026.2.28-cp314-cp314t-win_arm64.whl", hash = "sha256:dee50f1be42222f89767b64b283283ef963189da0dda4a515aa54a5563c62dec", size = 275010, upload-time = "2026-02-28T02:19:40.65Z" }, +] + [[package]] name = "requests" version = "2.32.5" @@ -821,6 +1229,28 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/3e/0a/9e1be9035b37448ce2e68c978f0591da94389ade5a5abafa4cf99985d1b2/ruff-0.15.4-py3-none-win_arm64.whl", hash = "sha256:60d5177e8cfc70e51b9c5fad936c634872a74209f934c1e79107d11787ad5453", size = 10966776, upload-time = "2026-02-26T20:03:56.908Z" }, ] +[[package]] +name = "safetensors" +version = "0.7.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/29/9c/6e74567782559a63bd040a236edca26fd71bc7ba88de2ef35d75df3bca5e/safetensors-0.7.0.tar.gz", hash = "sha256:07663963b67e8bd9f0b8ad15bb9163606cd27cc5a1b96235a50d8369803b96b0", size = 200878, upload-time = "2025-11-19T15:18:43.199Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/fa/47/aef6c06649039accf914afef490268e1067ed82be62bcfa5b7e886ad15e8/safetensors-0.7.0-cp38-abi3-macosx_10_12_x86_64.whl", hash = "sha256:c82f4d474cf725255d9e6acf17252991c3c8aac038d6ef363a4bf8be2f6db517", size = 467781, upload-time = "2025-11-19T15:18:35.84Z" }, + { url = "https://files.pythonhosted.org/packages/e8/00/374c0c068e30cd31f1e1b46b4b5738168ec79e7689ca82ee93ddfea05109/safetensors-0.7.0-cp38-abi3-macosx_11_0_arm64.whl", hash = "sha256:94fd4858284736bb67a897a41608b5b0c2496c9bdb3bf2af1fa3409127f20d57", size = 447058, upload-time = "2025-11-19T15:18:34.416Z" }, + { url = "https://files.pythonhosted.org/packages/f1/06/578ffed52c2296f93d7fd2d844cabfa92be51a587c38c8afbb8ae449ca89/safetensors-0.7.0-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e07d91d0c92a31200f25351f4acb2bc6aff7f48094e13ebb1d0fb995b54b6542", size = 491748, upload-time = "2025-11-19T15:18:09.79Z" }, + { url = "https://files.pythonhosted.org/packages/ae/33/1debbbb70e4791dde185edb9413d1fe01619255abb64b300157d7f15dddd/safetensors-0.7.0-cp38-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8469155f4cb518bafb4acf4865e8bb9d6804110d2d9bdcaa78564b9fd841e104", size = 503881, upload-time = "2025-11-19T15:18:16.145Z" }, + { url = "https://files.pythonhosted.org/packages/8e/1c/40c2ca924d60792c3be509833df711b553c60effbd91da6f5284a83f7122/safetensors-0.7.0-cp38-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:54bef08bf00a2bff599982f6b08e8770e09cc012d7bba00783fc7ea38f1fb37d", size = 623463, upload-time = "2025-11-19T15:18:21.11Z" }, + { url = "https://files.pythonhosted.org/packages/9b/3a/13784a9364bd43b0d61eef4bea2845039bc2030458b16594a1bd787ae26e/safetensors-0.7.0-cp38-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:42cb091236206bb2016d245c377ed383aa7f78691748f3bb6ee1bfa51ae2ce6a", size = 532855, upload-time = "2025-11-19T15:18:25.719Z" }, + { url = "https://files.pythonhosted.org/packages/a0/60/429e9b1cb3fc651937727befe258ea24122d9663e4d5709a48c9cbfceecb/safetensors-0.7.0-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dac7252938f0696ddea46f5e855dd3138444e82236e3be475f54929f0c510d48", size = 507152, upload-time = "2025-11-19T15:18:33.023Z" }, + { url = "https://files.pythonhosted.org/packages/3c/a8/4b45e4e059270d17af60359713ffd83f97900d45a6afa73aaa0d737d48b6/safetensors-0.7.0-cp38-abi3-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:1d060c70284127fa805085d8f10fbd0962792aed71879d00864acda69dbab981", size = 541856, upload-time = "2025-11-19T15:18:31.075Z" }, + { url = "https://files.pythonhosted.org/packages/06/87/d26d8407c44175d8ae164a95b5a62707fcc445f3c0c56108e37d98070a3d/safetensors-0.7.0-cp38-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:cdab83a366799fa730f90a4ebb563e494f28e9e92c4819e556152ad55e43591b", size = 674060, upload-time = "2025-11-19T15:18:37.211Z" }, + { url = "https://files.pythonhosted.org/packages/11/f5/57644a2ff08dc6325816ba7217e5095f17269dada2554b658442c66aed51/safetensors-0.7.0-cp38-abi3-musllinux_1_2_armv7l.whl", hash = "sha256:672132907fcad9f2aedcb705b2d7b3b93354a2aec1b2f706c4db852abe338f85", size = 771715, upload-time = "2025-11-19T15:18:38.689Z" }, + { url = "https://files.pythonhosted.org/packages/86/31/17883e13a814bd278ae6e266b13282a01049b0c81341da7fd0e3e71a80a3/safetensors-0.7.0-cp38-abi3-musllinux_1_2_i686.whl", hash = "sha256:5d72abdb8a4d56d4020713724ba81dac065fedb7f3667151c4a637f1d3fb26c0", size = 714377, upload-time = "2025-11-19T15:18:40.162Z" }, + { url = "https://files.pythonhosted.org/packages/4a/d8/0c8a7dc9b41dcac53c4cbf9df2b9c83e0e0097203de8b37a712b345c0be5/safetensors-0.7.0-cp38-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:b0f6d66c1c538d5a94a73aa9ddca8ccc4227e6c9ff555322ea40bdd142391dd4", size = 677368, upload-time = "2025-11-19T15:18:41.627Z" }, + { url = "https://files.pythonhosted.org/packages/05/e5/cb4b713c8a93469e3c5be7c3f8d77d307e65fe89673e731f5c2bfd0a9237/safetensors-0.7.0-cp38-abi3-win32.whl", hash = "sha256:c74af94bf3ac15ac4d0f2a7c7b4663a15f8c2ab15ed0fc7531ca61d0835eccba", size = 326423, upload-time = "2025-11-19T15:18:45.74Z" }, + { url = "https://files.pythonhosted.org/packages/5d/e6/ec8471c8072382cb91233ba7267fd931219753bb43814cbc71757bfd4dab/safetensors-0.7.0-cp38-abi3-win_amd64.whl", hash = "sha256:d1239932053f56f3456f32eb9625590cc7582e905021f94636202a864d470755", size = 341380, upload-time = "2025-11-19T15:18:44.427Z" }, +] + [[package]] name = "sentry-sdk" version = "2.54.0" @@ -834,6 +1264,15 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/53/39/be412cc86bc6247b8f69e9383d7950711bd86f8d0a4a4b0fe8fad685bc21/sentry_sdk-2.54.0-py2.py3-none-any.whl", hash = "sha256:fd74e0e281dcda63afff095d23ebcd6e97006102cdc8e78a29f19ecdf796a0de", size = 439198, upload-time = "2026-03-02T15:12:39.546Z" }, ] +[[package]] +name = "setuptools" +version = "82.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/82/f3/748f4d6f65d1756b9ae577f329c951cda23fb900e4de9f70900ced962085/setuptools-82.0.0.tar.gz", hash = "sha256:22e0a2d69474c6ae4feb01951cb69d515ed23728cf96d05513d36e42b62b37cb", size = 1144893, upload-time = "2026-02-08T15:08:40.206Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e1/c6/76dc613121b793286a3f91621d7b75a2b493e0390ddca50f11993eadf192/setuptools-82.0.0-py3-none-any.whl", hash = "sha256:70b18734b607bd1da571d097d236cfcfacaf01de45717d59e6e04b96877532e0", size = 1003468, upload-time = "2026-02-08T15:08:38.723Z" }, +] + [[package]] name = "shellingham" version = "1.5.4" @@ -866,6 +1305,44 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/f1/7b/ce1eafaf1a76852e2ec9b22edecf1daa58175c090266e9f6c64afcd81d91/stack_data-0.6.3-py3-none-any.whl", hash = "sha256:d5558e0c25a4cb0853cddad3d77da9891a08cb85dd9f9f91b9f8cd66e511e695", size = 24521, upload-time = "2023-09-30T13:58:03.53Z" }, ] +[[package]] +name = "sympy" +version = "1.14.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "mpmath" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/83/d3/803453b36afefb7c2bb238361cd4ae6125a569b4db67cd9e79846ba2d68c/sympy-1.14.0.tar.gz", hash = "sha256:d3d3fe8df1e5a0b42f0e7bdf50541697dbe7d23746e894990c030e2b05e72517", size = 7793921, upload-time = "2025-04-27T18:05:01.611Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a2/09/77d55d46fd61b4a135c444fc97158ef34a095e5681d0a6c10b75bf356191/sympy-1.14.0-py3-none-any.whl", hash = "sha256:e091cc3e99d2141a0ba2847328f5479b05d94a6635cb96148ccb3f34671bd8f5", size = 6299353, upload-time = "2025-04-27T18:04:59.103Z" }, +] + +[[package]] +name = "tokenizers" +version = "0.22.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "huggingface-hub" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/73/6f/f80cfef4a312e1fb34baf7d85c72d4411afde10978d4657f8cdd811d3ccc/tokenizers-0.22.2.tar.gz", hash = "sha256:473b83b915e547aa366d1eee11806deaf419e17be16310ac0a14077f1e28f917", size = 372115, upload-time = "2026-01-05T10:45:15.988Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/92/97/5dbfabf04c7e348e655e907ed27913e03db0923abb5dfdd120d7b25630e1/tokenizers-0.22.2-cp39-abi3-macosx_10_12_x86_64.whl", hash = "sha256:544dd704ae7238755d790de45ba8da072e9af3eea688f698b137915ae959281c", size = 3100275, upload-time = "2026-01-05T10:41:02.158Z" }, + { url = "https://files.pythonhosted.org/packages/2e/47/174dca0502ef88b28f1c9e06b73ce33500eedfac7a7692108aec220464e7/tokenizers-0.22.2-cp39-abi3-macosx_11_0_arm64.whl", hash = "sha256:1e418a55456beedca4621dbab65a318981467a2b188e982a23e117f115ce5001", size = 2981472, upload-time = "2026-01-05T10:41:00.276Z" }, + { url = "https://files.pythonhosted.org/packages/d6/84/7990e799f1309a8b87af6b948f31edaa12a3ed22d11b352eaf4f4b2e5753/tokenizers-0.22.2-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2249487018adec45d6e3554c71d46eb39fa8ea67156c640f7513eb26f318cec7", size = 3290736, upload-time = "2026-01-05T10:40:32.165Z" }, + { url = "https://files.pythonhosted.org/packages/78/59/09d0d9ba94dcd5f4f1368d4858d24546b4bdc0231c2354aa31d6199f0399/tokenizers-0.22.2-cp39-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:25b85325d0815e86e0bac263506dd114578953b7b53d7de09a6485e4a160a7dd", size = 3168835, upload-time = "2026-01-05T10:40:38.847Z" }, + { url = "https://files.pythonhosted.org/packages/47/50/b3ebb4243e7160bda8d34b731e54dd8ab8b133e50775872e7a434e524c28/tokenizers-0.22.2-cp39-abi3-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bfb88f22a209ff7b40a576d5324bf8286b519d7358663db21d6246fb17eea2d5", size = 3521673, upload-time = "2026-01-05T10:40:56.614Z" }, + { url = "https://files.pythonhosted.org/packages/e0/fa/89f4cb9e08df770b57adb96f8cbb7e22695a4cb6c2bd5f0c4f0ebcf33b66/tokenizers-0.22.2-cp39-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1c774b1276f71e1ef716e5486f21e76333464f47bece56bbd554485982a9e03e", size = 3724818, upload-time = "2026-01-05T10:40:44.507Z" }, + { url = "https://files.pythonhosted.org/packages/64/04/ca2363f0bfbe3b3d36e95bf67e56a4c88c8e3362b658e616d1ac185d47f2/tokenizers-0.22.2-cp39-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:df6c4265b289083bf710dff49bc51ef252f9d5be33a45ee2bed151114a56207b", size = 3379195, upload-time = "2026-01-05T10:40:51.139Z" }, + { url = "https://files.pythonhosted.org/packages/2e/76/932be4b50ef6ccedf9d3c6639b056a967a86258c6d9200643f01269211ca/tokenizers-0.22.2-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:369cc9fc8cc10cb24143873a0d95438bb8ee257bb80c71989e3ee290e8d72c67", size = 3274982, upload-time = "2026-01-05T10:40:58.331Z" }, + { url = "https://files.pythonhosted.org/packages/1d/28/5f9f5a4cc211b69e89420980e483831bcc29dade307955cc9dc858a40f01/tokenizers-0.22.2-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:29c30b83d8dcd061078b05ae0cb94d3c710555fbb44861139f9f83dcca3dc3e4", size = 9478245, upload-time = "2026-01-05T10:41:04.053Z" }, + { url = "https://files.pythonhosted.org/packages/6c/fb/66e2da4704d6aadebf8cb39f1d6d1957df667ab24cff2326b77cda0dcb85/tokenizers-0.22.2-cp39-abi3-musllinux_1_2_armv7l.whl", hash = "sha256:37ae80a28c1d3265bb1f22464c856bd23c02a05bb211e56d0c5301a435be6c1a", size = 9560069, upload-time = "2026-01-05T10:45:10.673Z" }, + { url = "https://files.pythonhosted.org/packages/16/04/fed398b05caa87ce9b1a1bb5166645e38196081b225059a6edaff6440fac/tokenizers-0.22.2-cp39-abi3-musllinux_1_2_i686.whl", hash = "sha256:791135ee325f2336f498590eb2f11dc5c295232f288e75c99a36c5dbce63088a", size = 9899263, upload-time = "2026-01-05T10:45:12.559Z" }, + { url = "https://files.pythonhosted.org/packages/05/a1/d62dfe7376beaaf1394917e0f8e93ee5f67fea8fcf4107501db35996586b/tokenizers-0.22.2-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:38337540fbbddff8e999d59970f3c6f35a82de10053206a7562f1ea02d046fa5", size = 10033429, upload-time = "2026-01-05T10:45:14.333Z" }, + { url = "https://files.pythonhosted.org/packages/fd/18/a545c4ea42af3df6effd7d13d250ba77a0a86fb20393143bbb9a92e434d4/tokenizers-0.22.2-cp39-abi3-win32.whl", hash = "sha256:a6bf3f88c554a2b653af81f3204491c818ae2ac6fbc09e76ef4773351292bc92", size = 2502363, upload-time = "2026-01-05T10:45:20.593Z" }, + { url = "https://files.pythonhosted.org/packages/65/71/0670843133a43d43070abeb1949abfdef12a86d490bea9cd9e18e37c5ff7/tokenizers-0.22.2-cp39-abi3-win_amd64.whl", hash = "sha256:c9ea31edff2968b44a88f97d784c2f16dc0729b8b143ed004699ebca91f05c48", size = 2747786, upload-time = "2026-01-05T10:45:18.411Z" }, + { url = "https://files.pythonhosted.org/packages/72/f4/0de46cfa12cdcbcd464cc59fde36912af405696f687e53a091fb432f694c/tokenizers-0.22.2-cp39-abi3-win_arm64.whl", hash = "sha256:9ce725d22864a1e965217204946f830c37876eee3b2ba6fc6255e8e903d5fcbc", size = 2612133, upload-time = "2026-01-05T10:45:17.232Z" }, +] + [[package]] name = "tomli" version = "2.4.0" @@ -902,6 +1379,59 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/c7/18/c86eb8e0202e32dd3df50d43d7ff9854f8e0603945ff398974c1d91ac1ef/tomli_w-1.2.0-py3-none-any.whl", hash = "sha256:188306098d013b691fcadc011abd66727d3c414c571bb01b1a174ba8c983cf90", size = 6675, upload-time = "2025-01-15T12:07:22.074Z" }, ] +[[package]] +name = "torch" +version = "2.10.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "cuda-bindings", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "filelock" }, + { name = "fsspec" }, + { name = "jinja2" }, + { name = "networkx" }, + { name = "nvidia-cublas-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "nvidia-cuda-cupti-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "nvidia-cuda-nvrtc-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "nvidia-cuda-runtime-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "nvidia-cudnn-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "nvidia-cufft-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "nvidia-cufile-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "nvidia-curand-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "nvidia-cusolver-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "nvidia-cusparse-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "nvidia-cusparselt-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "nvidia-nccl-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "nvidia-nvjitlink-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "nvidia-nvshmem-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "nvidia-nvtx-cu12", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "setuptools" }, + { name = "sympy" }, + { name = "triton", marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "typing-extensions" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/4f/93/716b5ac0155f1be70ed81bacc21269c3ece8dba0c249b9994094110bfc51/torch-2.10.0-cp314-cp314-macosx_14_0_arm64.whl", hash = "sha256:bf0d9ff448b0218e0433aeb198805192346c4fd659c852370d5cc245f602a06a", size = 79464992, upload-time = "2026-01-21T16:23:05.162Z" }, + { url = "https://files.pythonhosted.org/packages/69/2b/51e663ff190c9d16d4a8271203b71bc73a16aa7619b9f271a69b9d4a936b/torch-2.10.0-cp314-cp314-manylinux_2_28_aarch64.whl", hash = "sha256:233aed0659a2503b831d8a67e9da66a62c996204c0bba4f4c442ccc0c68a3f60", size = 146018567, upload-time = "2026-01-21T16:22:23.393Z" }, + { url = "https://files.pythonhosted.org/packages/5e/cd/4b95ef7f293b927c283db0b136c42be91c8ec6845c44de0238c8c23bdc80/torch-2.10.0-cp314-cp314-manylinux_2_28_x86_64.whl", hash = "sha256:682497e16bdfa6efeec8cde66531bc8d1fbbbb4d8788ec6173c089ed3cc2bfe5", size = 915721646, upload-time = "2026-01-21T16:21:16.983Z" }, + { url = "https://files.pythonhosted.org/packages/56/97/078a007208f8056d88ae43198833469e61a0a355abc0b070edd2c085eb9a/torch-2.10.0-cp314-cp314-win_amd64.whl", hash = "sha256:6528f13d2a8593a1a412ea07a99812495bec07e9224c28b2a25c0a30c7da025c", size = 113752373, upload-time = "2026-01-21T16:22:13.471Z" }, + { url = "https://files.pythonhosted.org/packages/d8/94/71994e7d0d5238393df9732fdab607e37e2b56d26a746cb59fdb415f8966/torch-2.10.0-cp314-cp314t-macosx_14_0_arm64.whl", hash = "sha256:f5ab4ba32383061be0fb74bda772d470140a12c1c3b58a0cfbf3dae94d164c28", size = 79850324, upload-time = "2026-01-21T16:22:09.494Z" }, + { url = "https://files.pythonhosted.org/packages/e2/65/1a05346b418ea8ccd10360eef4b3e0ce688fba544e76edec26913a8d0ee0/torch-2.10.0-cp314-cp314t-manylinux_2_28_aarch64.whl", hash = "sha256:716b01a176c2a5659c98f6b01bf868244abdd896526f1c692712ab36dbaf9b63", size = 146006482, upload-time = "2026-01-21T16:22:18.42Z" }, + { url = "https://files.pythonhosted.org/packages/1d/b9/5f6f9d9e859fc3235f60578fa64f52c9c6e9b4327f0fe0defb6de5c0de31/torch-2.10.0-cp314-cp314t-manylinux_2_28_x86_64.whl", hash = "sha256:d8f5912ba938233f86361e891789595ff35ca4b4e2ac8fe3670895e5976731d6", size = 915613050, upload-time = "2026-01-21T16:20:49.035Z" }, + { url = "https://files.pythonhosted.org/packages/66/4d/35352043ee0eaffdeff154fad67cd4a31dbed7ff8e3be1cc4549717d6d51/torch-2.10.0-cp314-cp314t-win_amd64.whl", hash = "sha256:71283a373f0ee2c89e0f0d5f446039bdabe8dbc3c9ccf35f0f784908b0acd185", size = 113995816, upload-time = "2026-01-21T16:22:05.312Z" }, +] + +[[package]] +name = "tqdm" +version = "4.67.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "colorama", marker = "sys_platform == 'win32'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/09/a9/6ba95a270c6f1fbcd8dac228323f2777d886cb206987444e4bce66338dd4/tqdm-4.67.3.tar.gz", hash = "sha256:7d825f03f89244ef73f1d4ce193cb1774a8179fd96f31d7e1dcde62092b960bb", size = 169598, upload-time = "2026-02-03T17:35:53.048Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/16/e1/3079a9ff9b8e11b846c6ac5c8b5bfb7ff225eee721825310c91b3b50304f/tqdm-4.67.3-py3-none-any.whl", hash = "sha256:ee1e4c0e59148062281c49d80b25b67771a127c85fc9676d3be5f243206826bf", size = 78374, upload-time = "2026-02-03T17:35:50.982Z" }, +] + [[package]] name = "traitlets" version = "5.14.3" @@ -911,6 +1441,41 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/00/c0/8f5d070730d7836adc9c9b6408dec68c6ced86b304a9b26a14df072a6e8c/traitlets-5.14.3-py3-none-any.whl", hash = "sha256:b74e89e397b1ed28cc831db7aea759ba6640cb3de13090ca145426688ff1ac4f", size = 85359, upload-time = "2024-04-19T11:11:46.763Z" }, ] +[[package]] +name = "transformers" +version = "5.2.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "huggingface-hub" }, + { name = "numpy" }, + { name = "packaging" }, + { name = "pyyaml" }, + { name = "regex" }, + { name = "safetensors" }, + { name = "tokenizers" }, + { name = "tqdm" }, + { name = "typer-slim" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/bd/7e/8a0c57d562015e5b16c97c1f0b8e0e92ead2c7c20513225dc12c2043ba9f/transformers-5.2.0.tar.gz", hash = "sha256:0088b8b46ccc9eff1a1dca72b5d618a5ee3b1befc3e418c9512b35dea9f9a650", size = 8618176, upload-time = "2026-02-16T18:54:02.867Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/4e/93/79754b0ca486e556c2b95d4f5afc66aaf4b260694f3d6e1b51da2d036691/transformers-5.2.0-py3-none-any.whl", hash = "sha256:9ecaf243dc45bee11a7d93f8caf03746accc0cb069181bbf4ad8566c53e854b4", size = 10403304, upload-time = "2026-02-16T18:53:59.699Z" }, +] + +[package.optional-dependencies] +torch = [ + { name = "accelerate" }, + { name = "torch" }, +] + +[[package]] +name = "triton" +version = "3.6.0" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/df/3d/9e7eee57b37c80cec63322c0231bb6da3cfe535a91d7a4d64896fcb89357/triton-3.6.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a17a5d5985f0ac494ed8a8e54568f092f7057ef60e1b0fa09d3fd1512064e803", size = 188273063, upload-time = "2026-01-20T16:01:07.278Z" }, + { url = "https://files.pythonhosted.org/packages/f6/56/6113c23ff46c00aae423333eb58b3e60bdfe9179d542781955a5e1514cb3/triton-3.6.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:46bd1c1af4b6704e554cad2eeb3b0a6513a980d470ccfa63189737340c7746a7", size = 188397994, upload-time = "2026-01-20T16:01:14.236Z" }, +] + [[package]] name = "typer" version = "0.24.1" @@ -926,6 +1491,18 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/4a/91/48db081e7a63bb37284f9fbcefda7c44c277b18b0e13fbc36ea2335b71e6/typer-0.24.1-py3-none-any.whl", hash = "sha256:112c1f0ce578bfb4cab9ffdabc68f031416ebcc216536611ba21f04e9aa84c9e", size = 56085, upload-time = "2026-02-21T16:54:41.616Z" }, ] +[[package]] +name = "typer-slim" +version = "0.24.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "typer" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/a7/a7/e6aecc4b4eb59598829a3b5076a93aff291b4fdaa2ded25efc4e1f4d219c/typer_slim-0.24.0.tar.gz", hash = "sha256:f0ed36127183f52ae6ced2ecb2521789995992c521a46083bfcdbb652d22ad34", size = 4776, upload-time = "2026-02-16T22:08:51.2Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a7/24/5480c20380dfd18cf33d14784096dca45a24eae6102e91d49a718d3b6855/typer_slim-0.24.0-py3-none-any.whl", hash = "sha256:d5d7ee1ee2834d5020c7c616ed5e0d0f29b9a4b1dd283bdebae198ec09778d0e", size = 3394, upload-time = "2026-02-16T22:08:49.92Z" }, +] + [[package]] name = "typing-extensions" version = "4.15.0"