Showing preview only (493K chars total). Download the full file or copy to clipboard to get everything.
Repository: WenJing95/SayKey
Branch: main
Commit: 8b76e04a2a82
Files: 58
Total size: 403.7 KB
Directory structure:
gitextract_j4dfeo4j/
├── .gitattributes
├── .gitignore
├── LICENSE.txt
├── backend/
│ ├── .gitignore
│ ├── CT-Transformer-punctuation/
│ │ ├── .flake8
│ │ ├── .gitignore
│ │ ├── LICENSE
│ │ ├── MANIFEST.in
│ │ ├── README.md
│ │ ├── cttPunctuator.py
│ │ ├── cttpunctuator/
│ │ │ ├── __init__.py
│ │ │ └── src/
│ │ │ ├── onnx/
│ │ │ │ └── configuration.json
│ │ │ ├── punctuator.py
│ │ │ └── utils/
│ │ │ ├── OrtInferSession.py
│ │ │ └── text_post_process.py
│ │ ├── setup.py
│ │ ├── test/
│ │ │ ├── test.py
│ │ │ └── test2.py
│ │ └── version.txt
│ ├── build_onefile.bat
│ ├── main.py
│ ├── punc-onnx/
│ │ ├── configuration.json
│ │ └── punc.onnx
│ ├── readme.md
│ ├── requirements.txt
│ ├── requirements_test.txt
│ ├── sherpa-onnx/
│ │ ├── model.int8.onnx
│ │ └── tokens.txt
│ └── test_api.py
├── frontend/
│ ├── .gitignore
│ ├── components.json
│ ├── index.html
│ ├── package.json
│ ├── postcss.config.js
│ ├── readme.md
│ ├── src/
│ │ ├── VoiceRecognitionIcon.tsx
│ │ ├── components/
│ │ │ └── ui/
│ │ │ ├── badge.tsx
│ │ │ ├── button.tsx
│ │ │ ├── card.tsx
│ │ │ ├── hover-card.tsx
│ │ │ ├── scroll-area.tsx
│ │ │ ├── tabs.tsx
│ │ │ └── tooltip.tsx
│ │ ├── favicon/
│ │ │ └── site.webmanifest
│ │ ├── globals.css
│ │ ├── i18n.ts
│ │ ├── index.html
│ │ ├── lib/
│ │ │ └── utils.ts
│ │ ├── log.html
│ │ ├── main.ts
│ │ ├── preload.ts
│ │ ├── renderer.tsx
│ │ └── styles.css
│ ├── tailwind.config.js
│ ├── tsconfig.json
│ └── webpack.config.js
├── readme.md
└── readme_zh.md
================================================
FILE CONTENTS
================================================
================================================
FILE: .gitattributes
================================================
backend/punc-onnx/punc.onnx filter=lfs diff=lfs merge=lfs -text
backend/sherpa-onnx/model.int8.onnx filter=lfs diff=lfs merge=lfs -text
================================================
FILE: .gitignore
================================================
.idea/
SayKey-v1.0.0
SayKey
SayKey-v1.0.0.zip
SayKey.zip
data
*.wav
================================================
FILE: LICENSE.txt
================================================
The MIT License (MIT)
Copyright (c) 2014-2017 Alexey Popravka
Copyright (c) 2021 Sean Stewart
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
================================================
FILE: backend/.gitignore
================================================
venv/
build/
dist/
*.spec
.idea/
data/
*.wav
================================================
FILE: backend/CT-Transformer-punctuation/.flake8
================================================
[flake8]
show-source=true
statistics=true
max-line-length = 108
per-file-ignores =
# line too long
runtime/src/utils/kaldifeat/feature.py : E501
runtime/src/utils/kaldifeat/ivector.py : E501
exclude =
.git,
**/data/**
**/onnx/**
ignore =
# E203 white space before ":"
E203,
# W503 line break before binary operator
W503,
# E226 missing whitespace around arithmetic operator
E226,
================================================
FILE: backend/CT-Transformer-punctuation/.gitignore
================================================
*.bin
*.onnx
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class
# C extensions
*.so
# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST
# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec
# Installer logs
pip-log.txt
pip-delete-this-directory.txt
# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.py,cover
.hypothesis/
.pytest_cache/
cover/
# Translations
*.mo
*.pot
# Django stuff:
*.log
local_settings.py
db.sqlite3
db.sqlite3-journal
# Flask stuff:
instance/
.webassets-cache
# Scrapy stuff:
.scrapy
# Sphinx documentation
docs/_build/
# PyBuilder
.pybuilder/
target/
# Jupyter Notebook
.ipynb_checkpoints
# IPython
profile_default/
ipython_config.py
# pyenv
# For a library or package, you might want to ignore these files since the code is
# intended to run in multiple environments; otherwise, check them in:
# .python-version
# pipenv
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
# However, in case of collaboration, if having platform-specific dependencies or dependencies
# having no cross-platform support, pipenv may install dependencies that don't work, or not
# install all needed dependencies.
#Pipfile.lock
# poetry
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
# This is especially recommended for binary packages to ensure reproducibility, and is more
# commonly ignored for libraries.
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
#poetry.lock
# pdm
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
#pdm.lock
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
# in version control.
# https://pdm.fming.dev/#use-with-ide
.pdm.toml
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
__pypackages__/
# Celery stuff
celerybeat-schedule
celerybeat.pid
# SageMath parsed files
*.sage.py
# Environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/
# Spyder project settings
.spyderproject
.spyproject
# Rope project settings
.ropeproject
# mkdocs documentation
/site
# mypy
.mypy_cache/
.dmypy.json
dmypy.json
# Pyre type checker
.pyre/
# pytype static type analyzer
.pytype/
# Cython debug symbols
cython_debug/
# PyCharm
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
# and can be added to the global gitignore or merged into this file. For a more nuclear
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/
================================================
FILE: backend/CT-Transformer-punctuation/LICENSE
================================================
The MIT License (MIT)
Copyright (c) 2014-2017 Alexey Popravka
Copyright (c) 2021 Sean Stewart
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
================================================
FILE: backend/CT-Transformer-punctuation/MANIFEST.in
================================================
include cttpunctuator/src/onnx/configuration.json
include cttpunctuator/src/onnx/punc.onnx
include cttpunctuator/src/onnx/punc.yaml
================================================
FILE: backend/CT-Transformer-punctuation/README.md
================================================
<br/>
<h2 align="center">Ctt punctuator</h2>
<br/>




A enterprise-grade Chinese-English code switch punctuator [funasr](https://github.com/alibaba-damo-academy/FunASR/).
<br/>
<h2 align="center">Key Features</h2>
<br/>
- **General**
ctt punctuator was trained on chinese-english code switch corpora.
- [x] offline punctuator
- [x] online punctuator
- [x] punctuator for chinese-english code switch
the onnx model file is 279M, you can download it from [here](https://github.com/lovemefan/CT-Transformer-punctuation/raw/main/cttpunctuator/src/onnx/punc.onnx)
- **Highly Portable**
ctt-punctuator reaps benefits from the rich ecosystems built around **ONNX** running everywhere where these runtimes are available.
## Installation
```bash
git clone https://github.com/lovemefan/CT-Transformer-punctuation.git
cd CT-Transformer-punctuation
# download onnx model from huggingface
wget "https://huggingface.co/lovemefan/ctt_punctuator/resolve/main/cttpunctuator/src/onnx/punc.onnx" -O cttpunctuator/src/onnx/punc.onnx
# you can also download with huggingface mirror
# wget "https://hf-mirror.com/lovemefan/ctt_punctuator/resolve/main/cttpunctuator/src/onnx/punc.onnx" -O cttpunctuator/src/onnx/punc.onnx
pip install -e .
```
## Usage
```python
from cttPunctuator import CttPunctuator
import logging
logging.basicConfig(
level=logging.INFO,
format="[%(asctime)s %(levelname)s] [%(filename)s:%(lineno)d %(module)s.%(funcName)s] %(message)s",
)
# offline mode
punc = CttPunctuator()
text = "据报道纽约时报使用ChatGPT创建了一个情人节消息生成器用户只需输入几个提示就可以得到一封自动生成的情书"
logging.info(punc.punctuate(text)[0])
# online mode
punc = CttPunctuator(online=True)
text_in = "跨境河流是养育沿岸|人民的生命之源长期以来为帮助下游地区防灾减灾中方技术人员|在上游地区极为恶劣的自然条件下克服巨大困难甚至冒着生命危险|向印方提供汛期水文资料处理紧急事件中方重视印方在跨境河流>问题上的关切|愿意进一步完善双方联合工作机制|凡是|中方能做的我们|都会去做而且会做得更好我请印度朋友们放心中国在上游的|任何开发利用都会经过科学|规划和论证兼顾上下游的利益"
vads = text_in.split("|")
rec_result_all = ""
param_dict = {"cache": []}
for vad in vads:
result = punc.punctuate(vad, param_dict=param_dict)
rec_result_all += result[0]
logging.info(f"Part: {rec_result_all}")
logging.info(f"Final: {rec_result_all}")
```
## Result
```bash
[2023-04-19 01:12:39,308 INFO] [ctt-punctuator.py:50 ctt-punctuator.__init__] Initializing punctuator model with offline mode.
[2023-04-19 01:12:55,854 INFO] [ctt-punctuator.py:52 ctt-punctuator.__init__] Offline model initialized.
[2023-04-19 01:12:55,854 INFO] [ctt-punctuator.py:55 ctt-punctuator.__init__] Model initialized.
[2023-04-19 01:12:55,868 INFO] [ctt-punctuator.py:67 ctt-punctuator.<module>] 据报道,纽约时报使用ChatGPT创建了一个情人节消息生成器,用户只需输入几个提示,就可以得到一封自动生成的情书。
[2023-04-19 01:12:55,868 INFO] [ctt-punctuator.py:40 ctt-punctuator.__init__] Initializing punctuator model with online mode.
[2023-04-19 01:13:12,499 INFO] [ctt-punctuator.py:43 ctt-punctuator.__init__] Online model initialized.
[2023-04-19 01:13:12,499 INFO] [ctt-punctuator.py:55 ctt-punctuator.__init__] Model initialized.
[2023-04-19 01:13:12,502 INFO] [ctt-punctuator.py:77 ctt-punctuator.<module>] Partial: 跨境河流是养育沿岸
[2023-04-19 01:13:12,508 INFO] [ctt-punctuator.py:77 ctt-punctuator.<module>] Partial: 跨境河流是养育沿岸人民的生命之源。长期以来,为帮助下游地区防灾减灾中方技术人员
[2023-04-19 01:13:12,521 INFO] [ctt-punctuator.py:77 ctt-punctuator.<module>] Partial: 跨境河流是养育沿岸人民的生命之源。长期以来,为帮助下游地区防灾减灾中方技术人员在上游地区极为恶劣的自然条件下克服巨大困难,甚至冒着生命危险
[2023-04-19 01:13:12,547 INFO] [ctt-punctuator.py:77 ctt-punctuator.<module>] Partial: 跨境河流是养育沿岸人民的生命之源。长期以来,为帮助下游地区防灾减灾中方技术人员在上游地区极为恶劣的自然条件下克服巨大困难,甚至冒着生命危险,向印方提供汛期水文资料处理紧急事件。中方重视印方在跨境河流>问题上的关切
[2023-04-19 01:13:12,553 INFO] [ctt-punctuator.py:77 ctt-punctuator.<module>] Partial: 跨境河流是养育沿岸人民的生命之源。长期以来,为帮助下游地区防灾减灾中方技术人员在上游地区极为恶劣的自然条件下克服巨大困难,甚至冒着生命危险,向印方提供汛期水文资料处理紧急事件。中方重视印方在跨境河流>问题上的关切,愿意进一步完善双方联合工作机制
[2023-04-19 01:13:12,559 INFO] [ctt-punctuator.py:77 ctt-punctuator.<module>] Partial: 跨境河流是养育沿岸人民的生命之源。长期以来,为帮助下游地区防灾减灾中方技术人员在上游地区极为恶劣的自然条件下克服巨大困难,甚至冒着生命危险,向印方提供汛期水文资料处理紧急事件。中方重视印方在跨境河流>问题上的关切,愿意进一步完善双方联合工作机制。凡是
[2023-04-19 01:13:12,560 INFO] [ctt-punctuator.py:77 ctt-punctuator.<module>] Partial: 跨境河流是养育沿岸人民的生命之源。长期以来,为帮助下游地区防灾减灾中方技术人员在上游地区极为恶劣的自然条件下克服巨大困难,甚至冒着生命危险,向印方提供汛期水文资料处理紧急事件。中方重视印方在跨境河流>问题上的关切,愿意进一步完善双方联合工作机制。凡是中方能做的,我们
[2023-04-19 01:13:12,567 INFO] [ctt-punctuator.py:77 ctt-punctuator.<module>] Partial: 跨境河流是养育沿岸人民的生命之源。长期以来,为帮助下游地区防灾减灾中方技术人员在上游地区极为恶劣的自然条件下克服巨大困难,甚至冒着生命危险,向印方提供汛期水文资料处理紧急事件。中方重视印方在跨境河流>问题上的关切,愿意进一步完善双方联合工作机制。凡是中方能做的,我们都会去做,而且会做得更好。我请印度朋友们放心,中国在上游的
[2023-04-19 01:13:12,572 INFO] [ctt-punctuator.py:77 ctt-punctuator.<module>] Partial: 跨境河流是养育沿岸人民的生命之源。长期以来,为帮助下游地区防灾减灾中方技术人员在上游地区极为恶劣的自然条件下克服巨大困难,甚至冒着生命危险,向印方提供汛期水文资料处理紧急事件。中方重视印方在跨境河流>问题上的关切,愿意进一步完善双方联合工作机制。凡是中方能做的,我们都会去做,而且会做得更好。我请印度朋友们放心,中国在上游的任何开发利用,都会经过科学
[2023-04-19 01:13:12,578 INFO] [ctt-punctuator.py:77 ctt-punctuator.<module>] Partial: 跨境河流是养育沿岸人民的生命之源。长期以来,为帮助下游地区防灾减灾中方技术人员在上游地区极为恶劣的自然条件下克服巨大困难,甚至冒着生命危险,向印方提供汛期水文资料处理紧急事件。中方重视印方在跨境河流>问题上的关切,愿意进一步完善双方联合工作机制。凡是中方能做的,我们都会去做,而且会做得更好。我请印度朋友们放心,中国在上游的任何开发利用,都会经过科学规划和论证,兼顾上下游的利益
[2023-04-19 01:13:12,578 INFO] [ctt-punctuator.py:79 ctt-punctuator.<module>] Final: 跨境河流是养育沿岸人民的生命之源。长期以来,为帮助下游地区防灾减灾中方技术人员在上游地区极为恶劣的自然条件下克服巨大困难,甚至冒着生命危险,向印方提供汛期水文资料处理紧急事件。中方重视印方在跨境河流>问题上的关切,愿意进一步完善双方联合工作机制。凡是中方能做的,我们都会去做,而且会做得更好。我请印度朋友们放心,中国在上游的任何开发利用,都会经过科学规划和论证,兼顾上下游的利益
```
## Citation
```
@inproceedings{chen2020controllable,
title={Controllable Time-Delay Transformer for Real-Time Punctuation Prediction and Disfluency Detection},
author={Chen, Qian and Chen, Mengzhe and Li, Bo and Wang, Wen},
booktitle={ICASSP 2020-2020 IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP)},
pages={8069--8073},
year={2020},
organization={IEEE}
}
```
```
@misc{FunASR,
author = {Speech Lab, Alibaba Group, China},
title = {FunASR: A Fundamental End-to-End Speech Recognition Toolkit},
year = {2023},
publisher = {GitHub},
journal = {GitHub repository},
howpublished = {\url{https://github.com/alibaba-damo-academy/FunASR/}},
}
```
================================================
FILE: backend/CT-Transformer-punctuation/cttPunctuator.py
================================================
# -*- coding:utf-8 -*-
# @FileName :ctt-punctuator.py
# @Time :2023/4/13 15:03
# @Author :lovemefan
# @Email :lovemefan@outlook.com
__author__ = "lovemefan"
__copyright__ = "Copyright (C) 2023 lovemefan"
__license__ = "MIT"
__version__ = "v0.0.1"
import logging
import threading
import os
from cttpunctuator.src.punctuator import CT_Transformer, CT_Transformer_VadRealtime
logging.basicConfig(
level=logging.WARN,
format="[%(asctime)s %(levelname)s] [%(filename)s:%(lineno)d %(module)s.%(funcName)s] %(message)s",
)
lock = threading.RLock()
class CttPunctuator:
_offline_model = None
_online_model = None
def __init__(self, online: bool = False, model_dir: str = None):
"""
punctuator with singleton pattern
:param online: whether to use online mode
:param model_dir: directory containing the model files
"""
self.online = online
self.model_dir = model_dir or os.path.join(os.path.dirname(__file__), "cttpunctuator", "src", "onnx")
if online:
if CttPunctuator._online_model is None:
with lock:
if CttPunctuator._online_model is None:
logging.info("Initializing punctuator model with online mode.")
CttPunctuator._online_model = CT_Transformer_VadRealtime(model_dir=self.model_dir)
self.param_dict = {"cache": []}
logging.info("Online model initialized.")
self.model = CttPunctuator._online_model
else:
if CttPunctuator._offline_model is None:
with lock:
if CttPunctuator._offline_model is None:
logging.info("Initializing punctuator model with offline mode.")
CttPunctuator._offline_model = CT_Transformer(model_dir=self.model_dir)
logging.info("Offline model initialized.")
self.model = CttPunctuator._offline_model
logging.info("Model initialized.")
def punctuate(self, text: str, param_dict=None):
if self.online:
param_dict = param_dict or self.param_dict
return self.model(text, self.param_dict)
else:
return self.model(text)
================================================
FILE: backend/CT-Transformer-punctuation/cttpunctuator/__init__.py
================================================
# -*- coding:utf-8 -*-
# @FileName :__init__.py.py
# @Time :2023/4/13 14:58
# @Author :lovemefan
# @Email :lovemefan@outlook.com
================================================
FILE: backend/CT-Transformer-punctuation/cttpunctuator/src/onnx/configuration.json
================================================
{
"framework": "onnx",
"task" : "punctuation",
"model" : {
"type" : "generic-punc",
"punc_model_name" : "punc.pb",
"punc_model_config" : {
"type": "pytorch",
"code_base": "funasr",
"mode": "punc",
"lang": "zh-cn",
"batch_size": 1,
"punc_config": "punc.yaml",
"model": "damo/punc_ct-transformer_zh-cn-common-vocab272727-pytorch"
}
},
"pipeline": {
"type":"punc-inference"
}
}
================================================
FILE: backend/CT-Transformer-punctuation/cttpunctuator/src/punctuator.py
================================================
import logging
import os.path
import pickle
from pathlib import Path
from typing import Tuple, Union
import numpy as np
from cttpunctuator.src.utils.OrtInferSession import ONNXRuntimeError, OrtInferSession
from cttpunctuator.src.utils.text_post_process import (
TokenIDConverter,
code_mix_split_words,
split_to_mini_sentence,
)
class CT_Transformer:
"""
Author: Speech Lab, Alibaba Group, China
CT-Transformer: Controllable time-delay transformer
for real-time punctuation prediction and disfluency detection
https://arxiv.org/pdf/2003.01309.pdf
"""
def __init__(
self,
model_dir: Union[str, Path] = None,
batch_size: int = 1,
device_id: Union[str, int] = "-1",
quantize: bool = False,
intra_op_num_threads: int = 4,
):
model_dir = model_dir or os.path.join(os.path.dirname(__file__), "onnx")
if model_dir is None or not Path(model_dir).exists():
raise FileNotFoundError(f"{model_dir} does not exist.")
model_file = os.path.join(model_dir, "punc.onnx")
if quantize:
model_file = os.path.join(model_dir, "model_quant.onnx")
config_file = os.path.join(model_dir, "punc.bin")
with open(config_file, "rb") as file:
config = pickle.load(file)
self.converter = TokenIDConverter(config["token_list"])
self.ort_infer = OrtInferSession(
model_file, device_id, intra_op_num_threads=intra_op_num_threads
)
self.batch_size = 1
self.punc_list = config["punc_list"]
self.period = 0
for i in range(len(self.punc_list)):
if self.punc_list[i] == ",":
self.punc_list[i] = ","
elif self.punc_list[i] == "?":
self.punc_list[i] = "?"
elif self.punc_list[i] == "。":
self.period = i
def __call__(self, text: Union[list, str], split_size=20):
split_text = code_mix_split_words(text)
split_text_id = self.converter.tokens2ids(split_text)
mini_sentences = split_to_mini_sentence(split_text, split_size)
mini_sentences_id = split_to_mini_sentence(split_text_id, split_size)
assert len(mini_sentences) == len(mini_sentences_id)
cache_sent = []
cache_sent_id = []
new_mini_sentence = ""
new_mini_sentence_punc = []
cache_pop_trigger_limit = 200
for mini_sentence_i in range(len(mini_sentences)):
mini_sentence = mini_sentences[mini_sentence_i]
mini_sentence_id = mini_sentences_id[mini_sentence_i]
mini_sentence = cache_sent + mini_sentence
mini_sentence_id = np.array(cache_sent_id + mini_sentence_id, dtype="int64")
text_lengths = np.array([len(mini_sentence)], dtype="int32")
data = {
"text": mini_sentence_id[None, :],
"text_lengths": text_lengths,
}
try:
outputs = self.infer(data["text"], data["text_lengths"])
y = outputs[0]
punctuations = np.argmax(y, axis=-1)[0]
assert punctuations.size == len(mini_sentence)
except ONNXRuntimeError as e:
logging.exception(e)
# Search for the last Period/QuestionMark as cache
if mini_sentence_i < len(mini_sentences) - 1:
sentenceEnd = -1
last_comma_index = -1
for i in range(len(punctuations) - 2, 1, -1):
if (
self.punc_list[punctuations[i]] == "。"
or self.punc_list[punctuations[i]] == "?"
):
sentenceEnd = i
break
if last_comma_index < 0 and self.punc_list[punctuations[i]] == ",":
last_comma_index = i
if (
sentenceEnd < 0
and len(mini_sentence) > cache_pop_trigger_limit
and last_comma_index >= 0
):
# The sentence it too long, cut off at a comma.
sentenceEnd = last_comma_index
punctuations[sentenceEnd] = self.period
cache_sent = mini_sentence[sentenceEnd + 1 :]
cache_sent_id = mini_sentence_id[sentenceEnd + 1 :].tolist()
mini_sentence = mini_sentence[0 : sentenceEnd + 1]
punctuations = punctuations[0 : sentenceEnd + 1]
new_mini_sentence_punc += [int(x) for x in punctuations]
words_with_punc = []
for i in range(len(mini_sentence)):
if i > 0:
if (
len(mini_sentence[i][0].encode()) == 1
and len(mini_sentence[i - 1][0].encode()) == 1
):
mini_sentence[i] = " " + mini_sentence[i]
words_with_punc.append(mini_sentence[i])
if self.punc_list[punctuations[i]] != "_":
words_with_punc.append(self.punc_list[punctuations[i]])
new_mini_sentence += "".join(words_with_punc)
# Add Period for the end of the sentence
new_mini_sentence_out = new_mini_sentence
new_mini_sentence_punc_out = new_mini_sentence_punc
if mini_sentence_i == len(mini_sentences) - 1:
if new_mini_sentence[-1] == "," or new_mini_sentence[-1] == "、":
new_mini_sentence_out = new_mini_sentence[:-1] + "。"
new_mini_sentence_punc_out = new_mini_sentence_punc[:-1] + [
self.period
]
elif new_mini_sentence[-1] != "。" and new_mini_sentence[-1] != "?":
new_mini_sentence_out = new_mini_sentence + "。"
new_mini_sentence_punc_out = new_mini_sentence_punc[:-1] + [
self.period
]
return new_mini_sentence_out, new_mini_sentence_punc_out
def infer(
self, feats: np.ndarray, feats_len: np.ndarray
) -> Tuple[np.ndarray, np.ndarray]:
outputs = self.ort_infer([feats, feats_len])
return outputs
class CT_Transformer_VadRealtime(CT_Transformer):
"""
Author: Speech Lab, Alibaba Group, China
CT-Transformer: Controllable time-delay transformer for
real-time punctuation prediction and disfluency detection
https://arxiv.org/pdf/2003.01309.pdf
"""
def __init__(
self,
model_dir: Union[str, Path] = None,
batch_size: int = 1,
device_id: Union[str, int] = "-1",
quantize: bool = False,
intra_op_num_threads: int = 4,
):
super(CT_Transformer_VadRealtime, self).__init__(
model_dir, batch_size, device_id, quantize, intra_op_num_threads
)
def __call__(self, text: str, param_dict: map, split_size=20):
cache_key = "cache"
assert cache_key in param_dict
cache = param_dict[cache_key]
if cache is not None and len(cache) > 0:
precache = "".join(cache)
else:
precache = ""
cache = []
full_text = precache + text
split_text = code_mix_split_words(full_text)
split_text_id = self.converter.tokens2ids(split_text)
mini_sentences = split_to_mini_sentence(split_text, split_size)
mini_sentences_id = split_to_mini_sentence(split_text_id, split_size)
new_mini_sentence_punc = []
assert len(mini_sentences) == len(mini_sentences_id)
cache_sent = []
cache_sent_id = np.array([], dtype="int32")
sentence_punc_list = []
sentence_words_list = []
cache_pop_trigger_limit = 200
skip_num = 0
for mini_sentence_i in range(len(mini_sentences)):
mini_sentence = mini_sentences[mini_sentence_i]
mini_sentence_id = mini_sentences_id[mini_sentence_i]
mini_sentence = cache_sent + mini_sentence
mini_sentence_id = np.concatenate((cache_sent_id, mini_sentence_id), axis=0)
text_length = len(mini_sentence_id)
data = {
"input": np.array(mini_sentence_id[None, :], dtype="int64"),
"text_lengths": np.array([text_length], dtype="int32"),
"vad_mask": self.vad_mask(text_length, len(cache))[
None, None, :, :
].astype(np.float32),
"sub_masks": np.tril(
np.ones((text_length, text_length), dtype=np.float32)
)[None, None, :, :].astype(np.float32),
}
try:
outputs = self.infer(
data["input"],
data["text_lengths"],
data["vad_mask"],
data["sub_masks"],
)
y = outputs[0]
punctuations = np.argmax(y, axis=-1)[0]
assert punctuations.size == len(mini_sentence)
except ONNXRuntimeError as e:
logging.exception(e)
# Search for the last Period/QuestionMark as cache
if mini_sentence_i < len(mini_sentences) - 1:
sentenceEnd = -1
last_comma_index = -1
for i in range(len(punctuations) - 2, 1, -1):
if (
self.punc_list[punctuations[i]] == "。"
or self.punc_list[punctuations[i]] == "?"
):
sentenceEnd = i
break
if last_comma_index < 0 and self.punc_list[punctuations[i]] == ",":
last_comma_index = i
if (
sentenceEnd < 0
and len(mini_sentence) > cache_pop_trigger_limit
and last_comma_index >= 0
):
# The sentence it too long, cut off at a comma.
sentenceEnd = last_comma_index
punctuations[sentenceEnd] = self.period
cache_sent = mini_sentence[sentenceEnd + 1 :]
cache_sent_id = mini_sentence_id[sentenceEnd + 1 :]
mini_sentence = mini_sentence[0 : sentenceEnd + 1]
punctuations = punctuations[0 : sentenceEnd + 1]
punctuations_np = [int(x) for x in punctuations]
new_mini_sentence_punc += punctuations_np
sentence_punc_list += [self.punc_list[int(x)] for x in punctuations_np]
sentence_words_list += mini_sentence
assert len(sentence_punc_list) == len(sentence_words_list)
words_with_punc = []
sentence_punc_list_out = []
for i in range(0, len(sentence_words_list)):
if i > 0:
if (
len(sentence_words_list[i][0].encode()) == 1
and len(sentence_words_list[i - 1][-1].encode()) == 1
):
sentence_words_list[i] = " " + sentence_words_list[i]
if skip_num < len(cache):
skip_num += 1
else:
words_with_punc.append(sentence_words_list[i])
if skip_num >= len(cache):
sentence_punc_list_out.append(sentence_punc_list[i])
if sentence_punc_list[i] != "_":
words_with_punc.append(sentence_punc_list[i])
sentence_out = "".join(words_with_punc)
sentenceEnd = -1
for i in range(len(sentence_punc_list) - 2, 1, -1):
if sentence_punc_list[i] == "。" or sentence_punc_list[i] == "?":
sentenceEnd = i
break
cache_out = sentence_words_list[sentenceEnd + 1 :]
if sentence_out[-1] in self.punc_list:
sentence_out = sentence_out[:-1]
sentence_punc_list_out[-1] = "_"
param_dict[cache_key] = cache_out
return sentence_out, sentence_punc_list_out, cache_out
def vad_mask(self, size, vad_pos, dtype=np.bool_):
"""Create mask for decoder self-attention.
:param int size: size of mask
:param int vad_pos: index of vad index
:param torch.dtype dtype: result dtype
:rtype: torch.Tensor (B, Lmax, Lmax)
"""
ret = np.ones((size, size), dtype=dtype)
if vad_pos <= 0 or vad_pos >= size:
return ret
sub_corner = np.zeros((vad_pos - 1, size - vad_pos), dtype=dtype)
ret[0 : vad_pos - 1, vad_pos:] = sub_corner
return ret
def infer(
self,
feats: np.ndarray,
feats_len: np.ndarray,
vad_mask: np.ndarray,
sub_masks: np.ndarray,
) -> Tuple[np.ndarray, np.ndarray]:
outputs = self.ort_infer([feats, feats_len, vad_mask, sub_masks])
return outputs
================================================
FILE: backend/CT-Transformer-punctuation/cttpunctuator/src/utils/OrtInferSession.py
================================================
# -*- coding:utf-8 -*-
# @FileName :OrtInferSession.py
# @Time :2023/4/13 15:13
# @Author :lovemefan
# @Email :lovemefan@outlook.com
import logging
from pathlib import Path
from typing import List, Union
import numpy as np
from onnxruntime import (
GraphOptimizationLevel,
InferenceSession,
SessionOptions,
get_available_providers,
get_device,
)
class ONNXRuntimeError(Exception):
pass
class OrtInferSession:
def __init__(self, model_file, device_id=-1, intra_op_num_threads=4):
device_id = str(device_id)
sess_opt = SessionOptions()
sess_opt.intra_op_num_threads = intra_op_num_threads
sess_opt.log_severity_level = 4
sess_opt.enable_cpu_mem_arena = False
sess_opt.graph_optimization_level = GraphOptimizationLevel.ORT_ENABLE_ALL
cuda_ep = "CUDAExecutionProvider"
cuda_provider_options = {
"device_id": device_id,
"arena_extend_strategy": "kNextPowerOfTwo",
"cudnn_conv_algo_search": "EXHAUSTIVE",
"do_copy_in_default_stream": "true",
}
cpu_ep = "CPUExecutionProvider"
cpu_provider_options = {
"arena_extend_strategy": "kSameAsRequested",
}
EP_list = []
if (
device_id != "-1"
and get_device() == "GPU"
and cuda_ep in get_available_providers()
):
EP_list = [(cuda_ep, cuda_provider_options)]
EP_list.append((cpu_ep, cpu_provider_options))
self._verify_model(model_file)
self.session = InferenceSession(
model_file, sess_options=sess_opt, providers=EP_list
)
if device_id != "-1" and cuda_ep not in self.session.get_providers():
logging.warnings.warn(
f"{cuda_ep} is not avaiable for current env, "
f"the inference part is automatically shifted to be executed under {cpu_ep}.\n"
"Please ensure the installed onnxruntime-gpu version matches your cuda and cudnn version, "
"you can check their relations from the offical web site: "
"https://onnxruntime.ai/docs/execution-providers/CUDA-ExecutionProvider.html",
RuntimeWarning,
)
def __call__(
self, input_content: List[Union[np.ndarray, np.ndarray]]
) -> np.ndarray:
input_dict = dict(zip(self.get_input_names(), input_content))
try:
return self.session.run(self.get_output_names(), input_dict)
except Exception as e:
raise ONNXRuntimeError("ONNXRuntime inferece failed.") from e
def get_input_names(
self,
):
return [v.name for v in self.session.get_inputs()]
def get_output_names(
self,
):
return [v.name for v in self.session.get_outputs()]
def get_character_list(self, key: str = "character"):
return self.meta_dict[key].splitlines()
def have_key(self, key: str = "character") -> bool:
self.meta_dict = self.session.get_modelmeta().custom_metadata_map
if key in self.meta_dict.keys():
return True
return False
@staticmethod
def _verify_model(model_path):
model_path = Path(model_path)
if not model_path.exists():
raise FileNotFoundError(f"{model_path} does not exists.")
if not model_path.is_file():
raise FileExistsError(f"{model_path} is not a file.")
================================================
FILE: backend/CT-Transformer-punctuation/cttpunctuator/src/utils/text_post_process.py
================================================
# -*- coding:utf-8 -*-
# @FileName :text_post_process.py
# @Time :2023/4/13 15:09
# @Author :lovemefan
# @Email :lovemefan@outlook.com
from pathlib import Path
from typing import Dict, Iterable, List, Union
import numpy as np
import yaml
from typeguard import check_argument_types
class TokenIDConverterError(Exception):
pass
class TokenIDConverter:
def __init__(
self,
token_list: Union[List, str],
):
check_argument_types()
self.token_list = token_list
self.unk_symbol = token_list[-1]
self.token2id = {v: i for i, v in enumerate(self.token_list)}
self.unk_id = self.token2id[self.unk_symbol]
def get_num_vocabulary_size(self) -> int:
return len(self.token_list)
def ids2tokens(self, integers: Union[np.ndarray, Iterable[int]]) -> List[str]:
if isinstance(integers, np.ndarray) and integers.ndim != 1:
raise TokenIDConverterError(
f"Must be 1 dim ndarray, but got {integers.ndim}"
)
return [self.token_list[i] for i in integers]
def tokens2ids(self, tokens: Iterable[str]) -> List[int]:
return [self.token2id.get(i, self.unk_id) for i in tokens]
def split_to_mini_sentence(words: list, word_limit: int = 20):
assert word_limit > 1
if len(words) <= word_limit:
return [words]
sentences = []
length = len(words)
sentence_len = length // word_limit
for i in range(sentence_len):
sentences.append(words[i * word_limit : (i + 1) * word_limit])
if length % word_limit > 0:
sentences.append(words[sentence_len * word_limit :])
return sentences
def code_mix_split_words(text: str):
words = []
segs = text.split()
for seg in segs:
# There is no space in seg.
current_word = ""
for c in seg:
if len(c.encode()) == 1:
# This is an ASCII char.
current_word += c
else:
# This is a Chinese char.
if len(current_word) > 0:
words.append(current_word)
current_word = ""
words.append(c)
if len(current_word) > 0:
words.append(current_word)
return words
def read_yaml(yaml_path: Union[str, Path]) -> Dict:
if not Path(yaml_path).exists():
raise FileExistsError(f"The {yaml_path} does not exist.")
with open(str(yaml_path), "rb") as f:
data = yaml.load(f, Loader=yaml.Loader)
return data
================================================
FILE: backend/CT-Transformer-punctuation/setup.py
================================================
# -*- coding:utf-8 -*-
# @FileName :setup.py
# @Time :2023/4/4 11:22
# @Author :lovemefan
# @Email :lovemefan@outlook.com
import os
from pathlib import Path
from setuptools import find_namespace_packages, setup
dirname = Path(os.path.dirname(__file__))
version_file = dirname / "version.txt"
with open(version_file, "r") as f:
version = f.read().strip()
requirements = {
"install": [
"setuptools<=65.0",
"PyYAML",
"typeguard==2.13.3",
"onnxruntime>=1.14.1",
],
"setup": [
"numpy==1.24.2",
],
"all": [],
}
requirements["all"].extend(requirements["install"])
install_requires = requirements["install"]
setup_requires = requirements["setup"]
setup(
name="cttpunctuator",
version=version,
url="https://github.com/lovemefan/CT-Transformer-punctuation",
author="Lovemefan, Yunnan Key Laboratory of Artificial Intelligence, "
"Kunming University of Science and Technology, Kunming, Yunnan ",
author_email="lovemefan@outlook.com",
description="ctt-punctuator: A enterprise-grade punctuator after chinese asr based "
"on ct-transformer from funasr opensource",
long_description=open(os.path.join(dirname, "README.md"), encoding="utf-8").read(),
long_description_content_type="text/markdown",
license="The MIT License",
packages=find_namespace_packages(),
include_package_data=True,
install_requires=install_requires,
python_requires=">=3.7.0",
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Operating System :: POSIX :: Linux",
"License :: OSI Approved :: Apache Software License",
"Topic :: Multimedia :: Sound/Audio :: Speech",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)
================================================
FILE: backend/CT-Transformer-punctuation/test/test.py
================================================
# -*- coding:utf-8 -*-
# @FileName :test.py.py
# @Time :2023/4/19 13:39
# @Author :lovemefan
# @Email :lovemefan@outlook.com
import logging
from cttPunctuator import CttPunctuator
logging.basicConfig(
level=logging.INFO,
format="[%(asctime)s %(levelname)s] [%(filename)s:%(lineno)d %(module)s.%(funcName)s] %(message)s",
)
# offline mode
punc = CttPunctuator()
text = "据报道纽约时报使用ChatGPT创建了一个情人节消息生成器用户只需输入几个提示就可以得到一封自动生成的情书"
logging.info(punc.punctuate(text)[0])
# online mode
punc = CttPunctuator(online=True)
text_in = (
"跨境河流是养育沿岸|人民的生命之源长期以来为帮助下游地区防灾减灾中方技术人员|"
"在上游地区极为恶劣的自然条件下克服巨大困难甚至冒着生命危险|"
"向印方提供汛期水文资料处理紧急事件中方重视印方在跨境河流>问题上的关切|"
"愿意进一步完善双方联合工作机制|凡是|中方能做的我们|"
"都会去做而且会做得更好我请印度朋友们放心中国在上游的|"
"任何开发利用都会经过科学|规划和论证兼顾上下游的利益"
)
vads = text_in.split("|")
rec_result_all = ""
for vad in vads:
result = punc.punctuate(vad)
rec_result_all += result[0]
logging.info(f"Part: {rec_result_all}")
logging.info(f"Final: {rec_result_all}")
================================================
FILE: backend/CT-Transformer-punctuation/test/test2.py
================================================
from cttPunctuator import CttPunctuator
import logging
logging.basicConfig(
level=logging.INFO,
format="[%(asctime)s %(levelname)s] [%(filename)s:%(lineno)d %(module)s.%(funcName)s] %(message)s",
)
# offline mode
punc = CttPunctuator()
text = "据报道纽约时报使用ChatGPT创建了一个情人节消息生成器用户只需输入几个提示就可以得到一封自动生成的情书"
logging.info(punc.punctuate(text)[0])
# online mode
punc = CttPunctuator(online=True)
text_in = "跨境河流是养育沿岸|人民的生命之源长期以来为帮助下游地区防灾减灾中方技术人员|在上游地区极为恶劣的自然条件下克服巨大困难甚至冒着生命危险|向印方提供汛期水文资料处理紧急事件中方重视印方在跨境河流>问题上的关切|愿意进一步完善双方联合工作机制|凡是|中方能做的我们|都会去做而且会做得更好我请印度朋友们放心中国在上游的|任何开发利用都会经过科学|规划和论证兼顾上下游的利益"
vads = text_in.split("|")
rec_result_all = ""
param_dict = {"cache": []}
for vad in vads:
result = punc.punctuate(vad, param_dict=param_dict)
rec_result_all += result[0]
logging.info(f"Part: {rec_result_all}")
logging.info(f"Final: {rec_result_all}")
================================================
FILE: backend/CT-Transformer-punctuation/version.txt
================================================
0.0.3
================================================
FILE: backend/build_onefile.bat
================================================
@echo off
REM Optimized Build Script for SayKey using PyInstaller on Windows 11
REM Set the path to your virtual environment
set VENV_PATH=.\venv
REM Activate the virtual environment
call %VENV_PATH%\Scripts\activate.bat
REM Check if activation was successful
if %errorlevel% neq 0 (
echo Failed to activate the virtual environment. Please check the path and try again.
exit /b 1
)
REM Ensure Python and pip are available
where python >nul 2>nul
if %errorlevel% neq 0 (
echo Python is not available in the activated environment. Please check your virtual environment setup.
exit /b 1
)
REM Install special dependencies
echo Installing special dependencies...
cd CT-Transformer-punctuation
pip install -e .
cd ..
pip install -r requirements.txt
REM Install PyInstaller
pip install pyinstaller
REM Ensure UPX is available
where upx >nul 2>nul
if %errorlevel% neq 0 (
echo UPX is not available. Please install UPX and ensure it is in your PATH.
exit /b 1
)
REM Create the .spec file for PyInstaller
echo Creating .spec file...
pyi-makespec --onefile --name SayKey-server ^
--hidden-import=sherpa_onnx ^
--hidden-import=cttpunctuator ^
main.py
REM Build the executable using UPX
echo Building executable...
pyinstaller --clean SayKey-server.spec
REM Check if build was successful
if exist "dist\SayKey-server.exe" (
echo Build successful! Executable is located at dist\SayKey-server.exe
REM Copy specific folders to the executable directory
echo Copying necessary folders to the executable directory...
mkdir "dist\sherpa-onnx"
copy "sherpa-onnx\model.int8.onnx" "dist\sherpa-onnx\"
copy "sherpa-onnx\tokens.txt" "dist\sherpa-onnx\"
mkdir "dist\punc-onnx"
copy "punc-onnx\configuration.json" "dist\punc-onnx\"
copy "punc-onnx\punc.bin" "dist\punc-onnx\"
copy "punc-onnx\punc.onnx" "dist\punc-onnx\"
echo Build process completed. Necessary files have been copied to the executable directory.
) else (
echo Build failed. Please check the error messages above.
)
REM Deactivate the virtual environment
deactivate
pause
================================================
FILE: backend/main.py
================================================
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# Author: WenJing Wu
import argparse
import asyncio
import os
import wave
from datetime import datetime
from typing import Optional, List, Dict, Any
import pyautogui
import pyperclip
import keyboard
import numpy as np
import sounddevice as sd
from loguru import logger
import sherpa_onnx
from cttPunctuator import CttPunctuator
from fastapi import FastAPI
from pydantic import BaseModel
import uvicorn
# Constants
SAMPLE_RATE = 16000 # Fixed sample rate
def type_text(text: str) -> None:
"""Type the given text"""
logger.info(f"recognized text: {text}")
# if is_text_input_focused():
pyperclip.copy(text)
pyautogui.hotkey('ctrl', 'v', interval=0.05)
# else:
# logger.warning("No active text input field detected.")
# logger.warning("Please ensure the cursor is in the desired input location.")
async def save_audio_async(samples: np.ndarray, sample_rate: int, file_path: str) -> None:
"""Asynchronously save audio samples to a WAV file."""
await asyncio.to_thread(save_audio, samples, sample_rate, file_path)
def save_audio(samples: np.ndarray, sample_rate: int, file_path: str) -> None:
"""Save audio samples to a WAV file."""
try:
with wave.open(file_path, 'wb') as wf:
wf.setnchannels(1)
wf.setsampwidth(2) # 16-bit audio
wf.setframerate(sample_rate)
wf.writeframes((samples * 32767).astype(np.int16).tobytes())
except Exception as e:
logger.error(f"Error saving audio file: {e}")
async def process_audio_async(
recognizer: sherpa_onnx.OfflineRecognizer,
audio: np.ndarray,
sample_rate: int,
punctuator: CttPunctuator,
) -> None:
"""Asynchronously process audio and perform speech recognition."""
text = await asyncio.to_thread(process_audio, recognizer, audio, sample_rate)
if text:
text = await asyncio.to_thread(add_punctuation, punctuator, text)
await asyncio.to_thread(type_text, text)
else:
logger.warning("No speech recognized.")
def process_audio(
recognizer: sherpa_onnx.OfflineRecognizer, audio: np.ndarray, sample_rate: int
) -> Optional[str]:
"""Process audio and perform speech recognition."""
asr_stream = recognizer.create_stream()
asr_stream.accept_waveform(sample_rate, audio)
recognizer.decode_stream(asr_stream)
return asr_stream.result.text.strip()
def add_punctuation(punctuator: CttPunctuator, text: str) -> str:
"""Add punctuation to the given text."""
return punctuator.punctuate(text)[0]
def ensure_data_directory() -> None:
"""Ensure the data directory exists."""
data_dir = "./data"
os.makedirs(data_dir, exist_ok=True)
print(f"Data directory ensured at: {data_dir}")
def is_device_usable(device_index):
try:
sd.check_input_settings(device=device_index)
return True
except Exception:
return False
def create_recognizer(args: argparse.Namespace) -> sherpa_onnx.OfflineRecognizer:
"""Create the speech recognizer."""
return sherpa_onnx.OfflineRecognizer.from_sense_voice(
model=args.sense_voice,
tokens=args.tokens,
num_threads=args.num_threads,
use_itn=False,
debug=False,
)
def get_args() -> argparse.Namespace:
"""Parse command-line arguments."""
parser = argparse.ArgumentParser(formatter_class=argparse.ArgumentDefaultsHelpFormatter)
parser.add_argument("--tokens", type=str, required=True, help="Path to tokens.txt")
parser.add_argument(
"--sense-voice", type=str, required=True, help="Path to the model.onnx from SenseVoice"
)
parser.add_argument(
"--num-threads",
type=int,
default=4,
help="Number of threads for neural network computation",
)
parser.add_argument(
"--microphone-index", type=int, help="Index of the microphone to use (optional)"
)
parser.add_argument(
"--hotkey",
type=str,
default="ctrl+q",
help="""\
Hotkey combination to start recording. Examples:
- For Ctrl+Q: use 'ctrl+q'
- For Alt+S: use 'alt+s'
- For Ctrl+CapsLock: use 'ctrl+caps lock'
""",
)
parser.add_argument(
"--api-port",
type=int,
default=58652,
help="Port number for the API server",
)
parser.add_argument(
"--punc-model-dir",
type=str,
default="./punc-onnx",
help="dir of the punctuation model files (default: current directory ./punc-onnx)",
)
parser.add_argument(
"--host",
type=str,
default="localhost",
help="Host to bind the API server (default: localhost)",
)
return parser.parse_args()
class Configurations:
"""Class to hold configuration settings."""
def __init__(self, hotkey: str, microphone_index: Optional[int]):
self.hotkey = hotkey
self.microphone_index = microphone_index
class DeviceIndex(BaseModel):
index: int
class Hotkey(BaseModel):
hotkey: str
app = FastAPI()
configurations = Configurations(hotkey="ctrl+q", microphone_index=None)
@app.get("/ping")
async def ping():
"""Keep-alive endpoint."""
return {"status": "alive"}
@app.get("/list_audio_devices")
async def list_audio_devices_api() -> Dict[str, List[Dict[str, Any]]]:
"""List available audio devices."""
devices = sd.query_devices()
hostapis = sd.query_hostapis()
current_device = sd.default.device[0]
device_list = []
for i, d in enumerate(devices):
# Get the host API name for the device
hostapi_name = hostapis[d['hostapi']]['name']
# Check if this is the current device
is_current_device = i == current_device
# Only consider devices using Windows WASAPI or the current device
if (hostapi_name == 'Windows WASAPI' and d['max_input_channels'] > 0 and is_device_usable(
i)) or is_current_device:
device_list.append({
"index": i,
"name": d["name"],
"is_current": is_current_device
})
return {"devices": device_list}
@app.post("/set_audio_device")
async def set_audio_device(device: DeviceIndex):
"""Set microphone device."""
try:
# Optionally, ensure the device uses Windows WASAPI
devices = sd.query_devices()
hostapis = sd.query_hostapis()
d = devices[device.index]
hostapi_name = hostapis[d['hostapi']]['name']
if hostapi_name != 'Windows WASAPI':
raise ValueError("Selected device is not using Windows WASAPI.")
# Set the default input device
sd.default.device[0] = device.index
device_name = d['name']
configurations.microphone_index = device.index
logger.info(f"Microphone set to: {device_name}")
return {
"status": "success",
"message": "success",
"device": {
"index": device.index,
"name": device_name
}
}
except Exception as e:
logger.error(f"Error setting microphone: {e}")
return {
"status": "error",
"message": str(e),
"device": {
"index": configurations.microphone_index,
"name": sd.query_devices()[configurations.microphone_index]['name']
if configurations.microphone_index is not None else "Not set"
}
}
@app.post("/set_hotkey")
async def set_hotkey_api(hotkey: Hotkey):
"""Set hotkey."""
try:
# Validate hotkey
if not hotkey.hotkey or not keyboard.parse_hotkey(hotkey.hotkey):
raise ValueError("Invalid hotkey combination")
old_hotkey = configurations.hotkey
configurations.hotkey = hotkey.hotkey
logger.info(f"Hotkey set to: {configurations.hotkey}")
return {
"status": "success",
"message": "success",
"hotkey": configurations.hotkey
}
except Exception as e:
logger.error(f"Error setting hotkey: {e}")
return {
"status": "error",
"message": str(e),
"hotkey": configurations.hotkey # Return current hotkey
}
@app.get("/get_hotkey")
async def get_hotkey_api():
"""Get the current hotkey."""
return {"hotkey": configurations.hotkey}
async def main() -> None:
"""Main function to run the SayKey program."""
args = get_args()
# 初始化配置
configurations.hotkey = args.hotkey
configurations.microphone_index = args.microphone_index
ensure_data_directory()
# list_audio_devices()
# set_microphone(configurations.microphone_index)
punctuator = CttPunctuator(model_dir=args.punc_model_dir)
print(
f"\033[32mSayKey is running. Hold {configurations.hotkey} to start recording, release to recognize.\033[0m"
)
print("Important: Ensure the cursor is in the desired input location before using voice typing.")
recognizer = create_recognizer(args)
# This queue will hold the audio data to be processed
audio_queue = asyncio.Queue()
async def audio_processing_worker():
while True:
item = await audio_queue.get()
if item is None:
break # Exit signal
audio_data, timestamp = item
logger.info(f"Processing audio recorded at {timestamp}")
# Save audio asynchronously
original_audio_file = f"./data/{timestamp}.wav"
await save_audio_async(audio_data, SAMPLE_RATE, original_audio_file)
# Process audio
await process_audio_async(recognizer, audio_data, SAMPLE_RATE, punctuator)
audio_queue.task_done()
# Start the audio processing worker task
processing_task = asyncio.create_task(audio_processing_worker())
recording_event = asyncio.Event()
audio_buffer = []
def callback(indata, frames, time_info, status):
"""Callback function for audio input stream."""
if recording_event.is_set():
audio_buffer.extend(indata.copy())
async def monitor_hotkey():
"""Monitor the hotkey and manage recording."""
nonlocal audio_buffer
while True:
await asyncio.sleep(0.01)
if keyboard.is_pressed(configurations.hotkey):
if not recording_event.is_set():
logger.info("Recording started.")
recording_event.set()
audio_buffer = []
else:
if recording_event.is_set():
logger.info("Recording ended, adding to processing queue.")
recording_event.clear()
buffer = np.concatenate(audio_buffer)
timestamp = datetime.now().strftime("%Y%m%d_%H%M%S_%f")
await audio_queue.put((buffer, timestamp))
async def run_input_stream():
"""Run the audio input stream."""
try:
with sd.InputStream(
channels=1,
dtype="float32",
samplerate=SAMPLE_RATE,
callback=callback,
device=configurations.microphone_index,
):
while True:
await asyncio.sleep(1)
except Exception as e:
logger.error(f"Error in input stream: {e}")
raise e
async def start_server():
"""Start the FastAPI server."""
config = uvicorn.Config(app, host=args.host, port=args.api_port, log_level="info", loop="asyncio")
server = uvicorn.Server(config)
await server.serve()
tasks = [
asyncio.create_task(monitor_hotkey()),
asyncio.create_task(run_input_stream()),
asyncio.create_task(start_server()),
]
try:
await asyncio.gather(*tasks)
except KeyboardInterrupt:
logger.info("Program interrupted by user.")
except Exception as e:
logger.error(f"Error running the program: {e}")
finally:
await audio_queue.put(None)
await processing_task
await audio_queue.join()
if __name__ == "__main__":
asyncio.run(main())
================================================
FILE: backend/punc-onnx/configuration.json
================================================
{
"framework": "onnx",
"task" : "punctuation",
"model" : {
"type" : "generic-punc",
"punc_model_name" : "punc.pb",
"punc_model_config" : {
"type": "pytorch",
"code_base": "funasr",
"mode": "punc",
"lang": "zh-cn",
"batch_size": 1,
"punc_config": "punc.yaml",
"model": "damo/punc_ct-transformer_zh-cn-common-vocab272727-pytorch"
}
},
"pipeline": {
"type":"punc-inference"
}
}
================================================
FILE: backend/punc-onnx/punc.onnx
================================================
version https://git-lfs.github.com/spec/v1
oid sha256:ed5318d91ff9520a03a5b5a8dba264b76858931db7d914b0de6ec9e4ad35970e
size 292001778
================================================
FILE: backend/readme.md
================================================
### Init
```bash
cd ./backend
cd CT-Transformer-punctuation
pip install -e .
pip install -r requirements.txt
# Start it
python main.py --sense-voice=./sherpa-onnx/model.int8.onnx --tokens=./sherpa-onnx/tokens.txt
```
### Command Line Options
Start the server part with these options:
```bash
python main.py --sense-voice=./sherpa-onnx/model.int8.onnx --tokens=./sherpa-onnx/tokens.txt
```
You must include:
- `--tokens`: Where the tokens.txt file is
- `--sense-voice`: Where the model.onnx file for SenseVoice is
You can also add:
- `--num-threads`: How many threads to use (usually 4)
- `--microphone-index`: Which microphone to use
- `--hotkey`: Which key to press to start (usually ctrl+q)
- `--api-port`: Which port number to use (usually 58652)
- `--punc-model-dir`: Where the punctuation files are (usually ./punc-onnx)
- `--host`: Which address to use (usually localhost)
### Starting the Server
When you start the server, you'll see:
```
SayKey is running. Hold ctrl+q to start recording, release to recognize.
Important: Make sure your cursor is where you want to type before using voice typing.
INFO: Uvicorn running on http://localhost:58652 (Press CTRL+C to quit)
```
To use it, hold `ctrl+q`, speak, then let go of `ctrl+q`.
================================================
FILE: backend/requirements.txt
================================================
altgraph==0.17.4
annotated-types==0.7.0
anyio==4.6.0
certifi==2024.8.30
cffi==1.17.1
charset-normalizer==3.4.0
click==8.1.7
colorama==0.4.6
coloredlogs==15.0.1
-e ./CT-Transformer-punctuation
exceptiongroup==1.2.2
fastapi==0.115.0
flatbuffers==24.3.25
gevent==24.10.2
greenlet==3.1.1
h11==0.14.0
httptools==0.6.1
humanfriendly==10.0
idna==3.10
keyboard==0.13.5
loguru==0.7.2
MouseInfo==0.1.3
mpmath==1.3.0
numpy==2.1.2
onnxruntime==1.19.2
packaging==24.1
pefile==2024.8.26
pillow==11.0.0
protobuf==5.28.2
PyAutoGUI==0.9.54
pycparser==2.22
pydantic==2.9.2
pydantic_core==2.23.4
PyGetWindow==0.0.9
pyinstaller==6.10.0
pyinstaller-hooks-contrib==2024.8
PyMsgBox==1.0.9
pyperclip==1.9.0
pyreadline3==3.5.4
PyRect==0.2.0
PyScreeze==1.0.1
python-dotenv==1.0.1
pytweening==1.2.0
pywin32-ctypes==0.2.3
PyYAML==6.0.2
requests==2.32.3
sherpa-onnx==1.10.27
sniffio==1.3.1
sounddevice==0.5.0
soundfile==0.12.1
starlette==0.38.6
sympy==1.13.3
typeguard==2.13.3
typing_extensions==4.12.2
urllib3==2.2.3
uvicorn==0.31.1
watchfiles==0.24.0
websocket-client==1.8.0
websockets==13.1
win32-setctime==1.1.0
zope.event==5.0
zope.interface==7.1.0
================================================
FILE: backend/requirements_test.txt
================================================
altgraph==0.17.4
annotated-types==0.7.0
anyio==4.6.0
================================================
FILE: backend/sherpa-onnx/model.int8.onnx
================================================
version https://git-lfs.github.com/spec/v1
oid sha256:c71f0ce00bec95b07744e116345e33d8cbbe08cef896382cf907bf4b51a2cd51
size 239233841
================================================
FILE: backend/sherpa-onnx/tokens.txt
================================================
<unk> 0
<s> 1
</s> 2
▁the 3
s 4
▁to 5
▁and 6
▁of 7
▁a 8
' 9
▁in 10
▁I 11
▁that 12
▁is 13
▁you 14
▁it 15
t 16
▁for 17
▁we 18
▁was 19
▁with 20
▁on 21
ing 22
▁be 23
▁are 24
▁have 25
ed 26
d 27
▁as 28
▁this 29
▁not 30
▁our 31
▁at 32
▁your 33
▁can 34
▁from 35
▁The 36
▁or 37
▁will 38
▁but 39
▁he 40
▁one 41
▁an 42
re 43
▁my 44
▁by 45
▁his 46
▁all 47
▁they 48
ly 49
▁had 50
▁her 51
▁me 52
▁more 53
I 54
▁were 55
▁about 56
▁out 57
▁do 58
▁so 59
▁up 60
m 61
▁has 62
▁what 63
y 64
▁there 65
▁time 66
▁would 67
The 68
▁like 69
▁their 70
er 71
▁It 72
▁been 73
▁just 74
▁if 75
▁them 76
▁some 77
▁which 78
▁We 79
▁she 80
▁He 81
ve 82
▁also 83
▁when 84
▁two 85
▁into 86
▁no 87
▁other 88
▁get 89
▁over 90
ll 91
▁him 92
▁us 93
n 94
▁And 95
▁know 96
▁think 97
▁who 98
al 99
▁could 100
▁see 101
▁than 102
▁A 103
▁very 104
▁don 105
▁back 106
▁how 107
e 108
▁people 109
▁new 110
▁these 111
▁But 112
r 113
▁make 114
▁any 115
▁first 116
We 117
▁then 118
▁only 119
▁now 120
▁way 121
in 122
▁You 123
▁ 124
▁In 125
▁year 126
▁want 127
▁good 128
▁This 129
▁well 130
▁need 131
▁going 132
▁may 133
▁work 134
es 135
▁because 136
▁much 137
▁even 138
▁through 139
▁She 140
▁where 141
▁go 142
▁down 143
▁So 144
It 145
A 146
▁right 147
▁really 148
▁those 149
▁most 150
▁should 151
a 152
In 153
▁three 154
▁did 155
▁take 156
▁many 157
▁re 158
▁twenty 159
▁here 160
▁business 161
▁use 162
▁still 163
▁after 164
▁too 165
▁If 166
▁before 167
▁made 168
or 169
▁They 170
▁look 171
▁years 172
▁around 173
▁point 174
ers 175
And 176
▁being 177
▁day 178
▁hundred 179
▁last 180
▁little 181
▁didn 182
▁five 183
▁said 184
▁something 185
▁off 186
▁things 187
▁such 188
This 189
▁same 190
▁help 191
▁life 192
S 193
▁both 194
▁different 195
ic 196
o 197
▁find 198
▁never 199
▁each 200
▁got 201
He 202
▁quarter 203
▁come 204
l 205
▁lot 206
▁say 207
▁own 208
▁its 209
▁four 210
▁That 211
▁long 212
▁un 213
▁again 214
▁great 215
▁used 216
▁end 217
▁S 218
▁There 219
▁few 220
▁better 221
▁always 222
▁part 223
▁while 224
▁might 225
But 226
▁home 227
▁best 228
▁between 229
▁am 230
le 231
ation 232
▁every 233
▁world 234
If 235
T 236
it 237
▁feel 238
▁love 239
▁place 240
an 241
C 242
▁next 243
▁market 244
able 245
▁B 246
ion 247
▁does 248
▁s 249
g 250
P 251
▁number 252
▁found 253
▁another 254
▁growth 255
▁second 256
▁believe 257
▁thing 258
You 259
▁away 260
▁put 261
▁continue 262
c 263
▁must 264
ity 265
▁results 266
▁give 267
ar 268
▁under 269
on 270
il 271
▁sure 272
▁thought 273
▁head 274
▁hand 275
▁important 276
▁thousand 277
▁man 278
▁For 279
▁without 280
So 281
▁data 282
▁T 283
▁keep 284
▁call 285
▁able 286
▁As 287
▁company 288
▁information 289
▁bit 290
▁de 291
▁What 292
M 293
▁let 294
▁why 295
▁E 296
▁during 297
D 298
▁case 299
i 300
▁high 301
▁six 302
▁kind 303
▁When 304
▁change 305
▁course 306
▁nineteen 307
▁team 308
▁start 309
p 310
and 311
F 312
▁set 313
▁though 314
As 315
el 316
B 317
▁done 318
▁hard 319
▁using 320
▁against 321
▁small 322
E 323
▁system 324
▁left 325
▁doing 326
th 327
▁face 328
▁side 329
▁water 330
▁enough 331
b 332
▁came 333
▁F 334
ch 335
R 336
▁fact 337
▁looking 338
▁car 339
▁since 340
en 341
▁went 342
ra 343
ent 344
▁took 345
L 346
▁order 347
▁room 348
▁ten 349
▁today 350
▁doesn 351
ment 352
▁process 353
▁non 354
▁line 355
▁No 356
▁past 357
▁D 358
▁far 359
ness 360
▁family 361
▁big 362
▁looked 363
▁show 364
ur 365
▁already 366
▁support 367
▁anything 368
▁experience 369
▁until 370
▁My 371
▁eight 372
▁tell 373
▁making 374
▁strong 375
▁open 376
▁actually 377
▁provide 378
▁play 379
▁working 380
▁seven 381
▁seen 382
▁game 383
G 384
▁care 385
▁across 386
▁real 387
She 388
▁expect 389
h 390
▁eyes 391
▁customers 392
▁wanted 393
▁future 394
▁mean 395
▁less 396
▁value 397
They 398
ri 399
us 400
▁together 401
▁night 402
at 403
▁free 404
▁money 405
▁ever 406
▁C 407
est 408
▁G 409
k 410
▁full 411
te 412
▁con 413
▁e 414
▁getting 415
▁level 416
ive 417
▁days 418
▁question 419
is 420
▁within 421
as 422
▁To 423
▁wasn 424
▁percent 425
▁mind 426
man 427
▁house 428
ry 429
O 430
▁power 431
▁large 432
▁try 433
▁top 434
▁understand 435
▁having 436
▁study 437
▁several 438
lo 439
▁everything 440
ro 441
▁P 442
▁cost 443
to 444
▁nothing 445
ies 446
▁light 447
▁run 448
▁forward 449
▁won 450
ter 451
▁saw 452
▁pre 453
▁started 454
▁service 455
▁possible 456
▁often 457
▁once 458
▁control 459
▁body 460
▁knew 461
▁product 462
▁felt 463
▁problem 464
▁talk 465
▁person 466
▁become 467
▁old 468
▁performance 469
u 470
▁group 471
▁read 472
▁co 473
▁state 474
There 475
▁half 476
▁book 477
▁later 478
▁nine 479
▁post 480
▁thirty 481
▁turn 482
▁trying 483
▁However 484
ia 485
▁Re 486
na 487
▁per 488
▁week 489
For 490
▁least 491
▁told 492
When 493
▁available 494
▁yet 495
N 496
id 497
▁move 498
▁food 499
ta 500
▁someone 501
▁R 502
▁probably 503
▁including 504
▁children 505
▁share 506
▁All 507
ist 508
▁patients 509
▁given 510
▁God 511
▁higher 512
▁impact 513
▁plan 514
▁quite 515
▁area 516
▁example 517
ted 518
▁increase 519
▁school 520
f 521
▁close 522
rs 523
▁products 524
▁result 525
That 526
▁job 527
ne 528
ate 529
ary 530
▁name 531
▁coming 532
▁live 533
age 534
▁local 535
▁model 536
ine 537
et 538
▁O 539
▁space 540
▁terms 541
▁door 542
▁Do 543
▁along 544
▁asked 545
▁financial 546
▁further 547
▁sales 548
co 549
▁due 550
ul 551
▁whole 552
se 553
▁clear 554
▁pretty 555
▁moment 556
▁months 557
▁matter 558
▁lower 559
▁New 560
▁else 561
▁early 562
▁significant 563
▁whether 564
▁key 565
▁present 566
ling 567
▁pro 568
me 569
▁H 570
ty 571
▁based 572
▁means 573
▁reason 574
▁At 575
▁development 576
we 577
▁times 578
la 579
▁focus 580
ie 581
▁almost 582
▁easy 583
▁idea 584
H 585
▁heart 586
▁myself 587
▁create 588
▁pay 589
ism 590
▁either 591
▁sense 592
ating 593
▁view 594
ma 595
▁story 596
▁design 597
▁N 598
▁front 599
ant 600
ton 601
▁bad 602
▁fifty 603
▁current 604
less 605
▁third 606
▁K 607
▁ask 608
▁His 609
▁turned 610
▁project 611
▁couple 612
▁rest 613
▁however 614
▁position 615
▁behind 616
▁p 617
ce 618
▁rate 619
▁dollars 620
tic 621
▁couldn 622
ous 623
▁country 624
x 625
▁makes 626
ol 627
▁Then 628
V 629
▁price 630
ally 631
ance 632
▁government 633
▁men 634
ge 635
um 636
▁hope 637
However 638
▁certain 639
▁everyone 640
▁health 641
▁isn 642
▁quality 643
li 644
▁others 645
▁needs 646
▁short 647
▁women 648
ized 649
▁add 650
Our 651
im 652
▁public 653
▁stop 654
▁needed 655
ial 656
ated 657
▁customer 658
▁taking 659
ad 660
ci 661
▁form 662
▁services 663
▁called 664
▁risk 665
▁Now 666
▁friends 667
▁yourself 668
▁ago 669
▁comes 670
▁dis 671
▁Not 672
▁L 673
▁addition 674
ian 675
the 676
▁true 677
▁These 678
▁low 679
▁cannot 680
▁f 681
▁season 682
▁One 683
▁After 684
▁human 685
▁site 686
▁capital 687
▁program 688
▁table 689
▁Or 690
▁amount 691
▁forty 692
▁size 693
▁Our 694
▁zero 695
▁opportunity 696
▁sort 697
▁maybe 698
w 699
▁list 700
W 701
▁content 702
▁longer 703
▁taken 704
▁specific 705
▁minutes 706
▁W 707
▁deal 708
led 709
▁single 710
▁revenue 711
▁potential 712
▁leave 713
▁mother 714
▁How 715
▁inside 716
▁questions 717
▁drive 718
▁above 719
▁treatment 720
▁remember 721
▁stay 722
▁changes 723
▁wrong 724
▁simple 725
▁especially 726
▁positive 727
▁similar 728
▁court 729
▁outside 730
▁interest 731
▁words 732
▁offer 733
un 734
▁young 735
▁tried 736
▁hands 737
▁bring 738
▁rather 739
▁ninety 740
▁social 741
To 742
▁seems 743
▁website 744
▁industry 745
ck 746
▁phone 747
▁black 748
▁type 749
▁grow 750
▁answer 751
▁learn 752
▁buy 753
▁access 754
▁issue 755
▁energy 756
▁known 757
▁build 758
▁air 759
▁demand 760
son 761
▁research 762
▁morning 763
▁building 764
▁heard 765
▁additional 766
▁period 767
▁sub 768
▁white 769
▁hear 770
line 771
▁general 772
▁voice 773
am 774
▁difficult 775
▁check 776
ful 777
▁simply 778
▁effect 779
▁approach 780
▁gave 781
▁expected 782
▁M 783
▁likely 784
▁en 785
▁age 786
▁include 787
▁De 788
▁happy 789
▁hair 790
▁major 791
▁special 792
▁soon 793
▁opportunities 794
▁cash 795
▁Co 796
de 797
▁hours 798
▁woman 799
ization 800
▁test 801
▁personal 802
▁lost 803
▁online 804
▁On 805
▁quickly 806
▁media 807
▁anyone 808
▁himself 809
▁role 810
▁child 811
▁return 812
▁environment 813
▁fun 814
▁management 815
min 816
▁continued 817
ping 818
▁range 819
▁began 820
▁war 821
▁cut 822
▁Some 823
ver 824
▁win 825
▁ground 826
▁improve 827
▁wouldn 828
▁happen 829
▁city 830
▁US 831
▁step 832
▁technology 833
▁hit 834
be 835
▁U 836
▁With 837
▁perfect 838
What 839
▁meet 840
ut 841
▁sixty 842
▁American 843
▁history 844
▁father 845
▁law 846
These 847
▁levels 848
▁particular 849
ir 850
▁review 851
▁music 852
▁community 853
▁anti 854
▁office 855
▁allow 856
▁paper 857
▁ability 858
▁field 859
▁increased 860
▁thinking 861
▁chance 862
▁Her 863
▁talking 864
▁cause 865
up 866
▁running 867
▁death 868
▁living 869
▁w 870
▁seeing 871
▁flow 872
▁Le 873
▁issues 874
▁gone 875
▁happened 876
▁nice 877
▁hold 878
ish 879
op 880
▁seemed 881
▁success 882
▁held 883
▁various 884
▁evidence 885
▁contact 886
▁st 887
ac 888
▁account 889
▁companies 890
▁progress 891
▁seem 892
ities 893
▁eighty 894
▁An 895
z 896
▁pain 897
▁among 898
U 899
▁main 900
▁b 901
▁areas 902
▁common 903
con 904
di 905
▁sound 906
▁walk 907
▁consider 908
▁following 909
▁activity 910
▁class 911
per 912
▁strategy 913
▁complete 914
▁itself 915
▁red 916
▁act 917
ite 918
ize 919
▁color 920
▁Just 921
▁upon 922
▁friend 923
ative 924
ti 925
▁related 926
ni 927
▁ready 928
▁operating 929
▁below 930
▁beautiful 931
▁blood 932
▁V 933
vi 934
▁seventy 935
▁month 936
▁break 937
▁cases 938
pe 939
▁alone 940
▁lead 941
▁fourth 942
▁attention 943
▁entire 944
▁near 945
▁bar 946
▁weeks 947
ner 948
▁dark 949
▁fall 950
▁students 951
▁costs 952
ig 953
▁cr 954
▁required 955
▁Ma 956
▁Well 957
▁date 958
▁remain 959
▁final 960
▁action 961
po 962
▁road 963
▁worked 964
▁function 965
▁fire 966
▁La 967
ard 968
▁problems 969
▁individual 970
▁stuff 971
▁base 972
go 973
▁floor 974
▁writing 975
▁feeling 976
▁skin 977
▁became 978
▁eighteen 979
▁production 980
▁page 981
▁situation 982
At 983
sh 984
mo 985
▁film 986
▁markets 987
▁benefit 988
▁decision 989
▁deep 990
▁recent 991
▁term 992
▁certainly 993
▁art 994
▁tax 995
My 996
va 997
ning 998
▁ex 999
▁credit 1000
After 1001
▁toward 1002
▁normal 1003
▁kids 1004
▁cell 1005
▁report 1006
▁watch 1007
▁clean 1008
▁usually 1009
▁enjoy 1010
▁total 1011
▁o 1012
▁write 1013
▁moving 1014
K 1015
▁please 1016
▁visit 1017
▁track 1018
▁decided 1019
▁late 1020
▁analysis 1021
▁follow 1022
▁fifteen 1023
▁exactly 1024
No 1025
▁subject 1026
▁goes 1027
v 1028
▁fine 1029
▁Ro 1030
▁United 1031
With 1032
▁network 1033
▁guess 1034
▁sometimes 1035
▁store 1036
▁completely 1037
▁oil 1038
▁choose 1039
▁investment 1040
▁structure 1041
▁fear 1042
ny 1043
▁bed 1044
▁d 1045
▁ways 1046
▁speak 1047
▁looks 1048
▁cross 1049
ow 1050
▁growing 1051
On 1052
ide 1053
our 1054
▁app 1055
▁begin 1056
▁overall 1057
▁release 1058
▁conditions 1059
▁method 1060
▁practice 1061
ors 1062
▁material 1063
▁record 1064
▁code 1065
▁natural 1066
▁factors 1067
▁basis 1068
he 1069
▁unique 1070
▁cells 1071
▁pressure 1072
ex 1073
▁feet 1074
▁event 1075
▁members 1076
no 1077
▁events 1078
▁balance 1079
▁twelve 1080
▁statements 1081
▁address 1082
▁themselves 1083
▁moved 1084
▁knowledge 1085
▁relationship 1086
▁Be 1087
om 1088
ber 1089
▁video 1090
▁word 1091
▁Ba 1092
▁center 1093
▁party 1094
▁response 1095
▁Sa 1096
▁path 1097
▁changed 1098
▁Con 1099
out 1100
▁difference 1101
▁wait 1102
▁safe 1103
ence 1104
▁choice 1105
ot 1106
bb 1107
▁training 1108
▁fit 1109
▁studies 1110
▁Me 1111
▁fast 1112
▁kept 1113
Now 1114
▁sat 1115
▁patient 1116
▁Mo 1117
▁eye 1118
ster 1119
▁land 1120
▁email 1121
▁instead 1122
▁works 1123
▁spend 1124
▁Even 1125
▁takes 1126
▁lives 1127
▁points 1128
▁weight 1129
▁associated 1130
ha 1131
▁throughout 1132
▁interesting 1133
▁touch 1134
▁avoid 1135
▁global 1136
land 1137
▁travel 1138
▁towards 1139
▁parents 1140
▁mentioned 1141
▁dead 1142
▁necessary 1143
▁says 1144
▁Ca 1145
▁brand 1146
▁ca 1147
bo 1148
▁Your 1149
▁board 1150
one 1151
▁beginning 1152
hi 1153
▁Li 1154
way 1155
▁million 1156
▁multiple 1157
▁Q 1158
▁political 1159
▁ahead 1160
▁police 1161
▁c 1162
▁brought 1163
▁earlier 1164
▁respect 1165
▁t 1166
ten 1167
os 1168
▁Ra 1169
▁included 1170
ical 1171
▁met 1172
▁focused 1173
▁provided 1174
▁involved 1175
▁considered 1176
▁huge 1177
▁v 1178
▁section 1179
▁cool 1180
▁blog 1181
▁particularly 1182
▁stand 1183
While 1184
▁multi 1185
▁Don 1186
▁games 1187
▁extra 1188
▁systems 1189
▁playing 1190
▁economic 1191
nt 1192
▁reading 1193
▁sign 1194
▁search 1195
▁pick 1196
▁image 1197
▁direction 1198
▁easily 1199
ward 1200
les 1201
ron 1202
▁worth 1203
▁language 1204
▁features 1205
▁nature 1206
▁ra 1207
▁rates 1208
mi 1209
ag 1210
ho 1211
▁professional 1212
▁finally 1213
▁goal 1214
ga 1215
▁details 1216
do 1217
▁strength 1218
▁beyond 1219
▁received 1220
▁mix 1221
▁hospital 1222
▁Can 1223
▁advantage 1224
▁property 1225
▁average 1226
▁girl 1227
▁disease 1228
▁haven 1229
▁Bo 1230
▁effects 1231
und 1232
▁players 1233
▁standard 1234
▁hot 1235
▁ensure 1236
▁sleep 1237
▁America 1238
▁deliver 1239
▁Let 1240
▁style 1241
▁saying 1242
▁prior 1243
▁clients 1244
king 1245
dy 1246
▁culture 1247
▁eat 1248
▁di 1249
▁created 1250
▁town 1251
▁compared 1252
em 1253
All 1254
▁super 1255
mer 1256
▁staff 1257
▁security 1258
▁sit 1259
▁private 1260
ley 1261
▁cold 1262
ring 1263
▁Why 1264
▁truth 1265
ak 1266
▁fully 1267
▁solution 1268
▁currently 1269
▁round 1270
▁shows 1271
▁reach 1272
ions 1273
▁Po 1274
▁computer 1275
▁platform 1276
lu 1277
▁businesses 1278
▁China 1279
▁starting 1280
▁St 1281
▁lack 1282
▁slow 1283
by 1284
ff 1285
▁added 1286
▁loved 1287
▁save 1288
▁previous 1289
▁projects 1290
end 1291
▁guy 1292
▁medical 1293
▁cover 1294
▁serve 1295
▁Al 1296
ably 1297
▁mo 1298
▁States 1299
▁fight 1300
▁effective 1301
▁directly 1302
▁loss 1303
iv 1304
▁showed 1305
▁population 1306
▁source 1307
ap 1308
▁explain 1309
▁learning 1310
▁portfolio 1311
▁By 1312
▁contract 1313
▁application 1314
▁warm 1315
▁mid 1316
▁picture 1317
▁physical 1318
▁la 1319
▁commercial 1320
▁wish 1321
▁stood 1322
▁count 1323
▁groups 1324
ger 1325
▁First 1326
▁original 1327
▁Mar 1328
ip 1329
▁piece 1330
▁guys 1331
▁imp 1332
▁surface 1333
▁clinical 1334
▁arm 1335
▁reported 1336
▁Maybe 1337
▁version 1338
▁wide 1339
▁condition 1340
▁recently 1341
▁ran 1342
▁negative 1343
▁spent 1344
▁reduce 1345
▁series 1346
▁stopped 1347
der 1348
▁actual 1349
▁existing 1350
▁summer 1351
▁hour 1352
▁brain 1353
▁wall 1354
ship 1355
▁Trump 1356
▁X 1357
▁giving 1358
▁clearly 1359
▁shape 1360
▁items 1361
▁news 1362
▁limited 1363
▁successful 1364
▁ball 1365
▁national 1366
▁trust 1367
ise 1368
ee 1369
▁stage 1370
▁sent 1371
▁card 1372
▁direct 1373
▁income 1374
▁receive 1375
▁note 1376
▁quick 1377
▁hurt 1378
▁trial 1379
▁built 1380
▁spot 1381
ub 1382
▁While 1383
▁green 1384
com 1385
▁inter 1386
time 1387
▁gas 1388
▁policy 1389
▁benefits 1390
▁Because 1391
▁although 1392
▁books 1393
▁force 1394
bi 1395
▁followed 1396
ab 1397
▁lose 1398
▁screen 1399
▁expression 1400
▁po 1401
▁options 1402
▁effort 1403
▁perhaps 1404
▁Yes 1405
▁sp 1406
▁numbers 1407
ca 1408
▁heat 1409
▁countries 1410
▁organization 1411
▁immediately 1412
▁played 1413
▁seat 1414
▁highly 1415
ud 1416
▁Z 1417
▁lines 1418
▁text 1419
▁larger 1420
▁press 1421
▁understanding 1422
▁agree 1423
▁opened 1424
▁doubt 1425
▁stock 1426
▁movement 1427
tro 1428
▁mouth 1429
One 1430
lin 1431
▁trade 1432
▁activities 1433
▁marketing 1434
let 1435
▁sell 1436
▁walked 1437
▁trip 1438
▁window 1439
▁figure 1440
▁soft 1441
▁fresh 1442
▁wife 1443
▁son 1444
▁character 1445
▁smile 1446
▁host 1447
▁prevent 1448
▁send 1449
▁thank 1450
▁plans 1451
tri 1452
mon 1453
▁whatever 1454
▁Pro 1455
▁blue 1456
▁box 1457
▁gun 1458
▁gives 1459
▁digital 1460
▁affect 1461
ations 1462
▁complex 1463
side 1464
▁speed 1465
▁ho 1466
▁user 1467
▁comment 1468
▁greater 1469
▁Europe 1470
ke 1471
▁straight 1472
▁waiting 1473
▁definitely 1474
Then 1475
▁aren 1476
ging 1477
fe 1478
▁guidance 1479
▁onto 1480
▁remains 1481
▁York 1482
▁Go 1483
▁breath 1484
▁scale 1485
▁target 1486
▁reached 1487
▁im 1488
ect 1489
▁prices 1490
▁closed 1491
▁meeting 1492
ens 1493
▁damage 1494
▁led 1495
▁pulled 1496
ight 1497
ang 1498
▁distribution 1499
da 1500
▁attack 1501
▁notice 1502
▁driving 1503
▁sixteen 1504
▁supply 1505
▁tend 1506
▁happens 1507
▁core 1508
ice 1509
▁provides 1510
▁shot 1511
tor 1512
▁claim 1513
▁volume 1514
que 1515
▁develop 1516
▁significantly 1517
▁bo 1518
▁efforts 1519
▁shown 1520
▁vi 1521
▁comments 1522
▁ideas 1523
▁cancer 1524
▁resources 1525
▁match 1526
▁web 1527
▁solid 1528
cing 1529
tion 1530
ped 1531
▁allowed 1532
▁herself 1533
▁shop 1534
fi 1535
▁purpose 1536
▁reasons 1537
ick 1538
▁international 1539
▁purchase 1540
▁written 1541
▁fair 1542
▁according 1543
▁May 1544
▁amazing 1545
▁brother 1546
▁appear 1547
▁healthy 1548
▁slightly 1549
izing 1550
▁bottom 1551
▁mine 1552
pa 1553
▁edge 1554
▁legal 1555
▁operations 1556
▁race 1557
▁J 1558
▁therefore 1559
▁sun 1560
▁drink 1561
ious 1562
▁Vi 1563
▁John 1564
▁article 1565
▁g 1566
▁types 1567
▁k 1568
▁pass 1569
▁Of 1570
▁insurance 1571
▁learned 1572
act 1573
oc 1574
▁capacity 1575
▁flat 1576
▁talked 1577
▁require 1578
▁margin 1579
▁designed 1580
▁scene 1581
▁serious 1582
▁paid 1583
ea 1584
▁easier 1585
▁plant 1586
▁arms 1587
▁nearly 1588
▁ourselves 1589
bu 1590
▁interested 1591
▁hadn 1592
▁stories 1593
▁correct 1594
▁Ha 1595
▁allows 1596
▁software 1597
▁behavior 1598
▁passed 1599
Some 1600
▁solutions 1601
▁middle 1602
ph 1603
lic 1604
▁shift 1605
▁region 1606
ey 1607
▁improvement 1608
▁discuss 1609
▁Court 1610
▁spread 1611
▁option 1612
▁eleven 1613
▁update 1614
▁appropriate 1615
▁Most 1616
▁expectations 1617
Not 1618
▁file 1619
▁drop 1620
▁generally 1621
▁husband 1622
▁produce 1623
▁includes 1624
▁developed 1625
▁stick 1626
▁charge 1627
ology 1628
▁poor 1629
▁favorite 1630
▁State 1631
▁excited 1632
▁Ho 1633
▁campaign 1634
▁mis 1635
▁Here 1636
▁comp 1637
▁comfortable 1638
▁leading 1639
nd 1640
▁achieve 1641
ft 1642
ier 1643
▁kitchen 1644
▁performed 1645
▁yes 1646
▁request 1647
gu 1648
▁English 1649
ified 1650
▁trouble 1651
▁Pa 1652
ath 1653
▁stress 1654
▁dog 1655
▁traditional 1656
▁mark 1657
▁suggest 1658
▁challenge 1659
▁message 1660
▁wind 1661
▁manage 1662
▁career 1663
▁chair 1664
▁ma 1665
▁baby 1666
ction 1667
▁parts 1668
▁Lo 1669
▁strategic 1670
▁increasing 1671
▁programs 1672
▁conference 1673
▁Car 1674
▁critical 1675
▁watching 1676
▁em 1677
▁died 1678
that 1679
▁Ta 1680
mb 1681
▁worse 1682
ries 1683
▁location 1684
▁detail 1685
▁education 1686
ah 1687
▁click 1688
▁dry 1689
▁safety 1690
▁protect 1691
▁extremely 1692
▁taste 1693
▁perspective 1694
▁fourteen 1695
io 1696
ble 1697
ual 1698
▁improved 1699
▁helped 1700
▁boy 1701
▁corner 1702
▁bill 1703
▁band 1704
ile 1705
▁dream 1706
▁competitive 1707
oo 1708
▁pull 1709
ability 1710
ple 1711
▁bank 1712
▁earnings 1713
▁presence 1714
His 1715
▁steps 1716
▁device 1717
▁Once 1718
▁sc 1719
▁worry 1720
▁train 1721
ru 1722
▁seventeen 1723
▁obviously 1724
▁agreement 1725
▁meant 1726
▁pleased 1727
▁useful 1728
▁net 1729
▁rule 1730
ator 1731
▁truly 1732
▁th 1733
▁ro 1734
▁debt 1735
▁Ne 1736
Re 1737
▁prepared 1738
uff 1739
J 1740
▁initial 1741
▁active 1742
▁users 1743
▁accept 1744
ba 1745
▁player 1746
▁South 1747
▁guide 1748
ible 1749
▁determine 1750
▁variety 1751
▁dollar 1752
▁modern 1753
▁excellent 1754
▁sitting 1755
▁retail 1756
▁secret 1757
▁glass 1758
▁continues 1759
▁ship 1760
nc 1761
▁values 1762
▁Ka 1763
ill 1764
▁investments 1765
▁gl 1766
▁primary 1767
▁memory 1768
▁gets 1769
▁equipment 1770
▁fl 1771
▁tools 1772
▁cl 1773
▁Please 1774
▁sex 1775
▁basic 1776
▁segment 1777
▁catch 1778
▁respond 1779
qui 1780
▁Also 1781
ach 1782
▁lo 1783
▁sheet 1784
▁exercise 1785
▁temperature 1786
▁factor 1787
▁daily 1788
▁block 1789
▁maintain 1790
▁City 1791
for 1792
▁handle 1793
▁street 1794
▁vote 1795
▁wonderful 1796
▁decide 1797
men 1798
▁combination 1799
▁assets 1800
▁die 1801
▁rock 1802
ear 1803
▁se 1804
▁hotel 1805
ign 1806
▁Thank 1807
▁counter 1808
▁micro 1809
▁providing 1810
▁popular 1811
mp 1812
▁Sp 1813
▁reality 1814
tter 1815
▁experienced 1816
▁h 1817
▁star 1818
▁fell 1819
gg 1820
▁sweet 1821
▁motion 1822
▁standing 1823
▁Like 1824
▁machine 1825
▁smaller 1826
▁apply 1827
▁sea 1828
▁profit 1829
▁length 1830
▁bi 1831
▁Gr 1832
▁display 1833
▁offers 1834
▁regular 1835
▁generation 1836
▁unit 1837
▁foot 1838
▁perform 1839
▁movie 1840
au 1841
ure 1842
▁link 1843
▁pricing 1844
▁planning 1845
▁finding 1846
ists 1847
▁heavy 1848
▁club 1849
▁methods 1850
▁client 1851
▁daughter 1852
▁TV 1853
cur 1854
▁listen 1855
▁majority 1856
▁concept 1857
▁models 1858
▁powerful 1859
▁partner 1860
▁driven 1861
▁states 1862
▁distance 1863
▁observed 1864
▁skills 1865
▁weather 1866
▁photo 1867
ever 1868
ient 1869
▁farm 1870
▁kill 1871
▁via 1872
▁thirteen 1873
▁interview 1874
▁suit 1875
▁influence 1876
▁bright 1877
▁firm 1878
ric 1879
aw 1880
▁creating 1881
▁rules 1882
▁realize 1883
▁wants 1884
ler 1885
▁spoke 1886
▁War 1887
▁park 1888
ps 1889
▁instance 1890
▁Jesus 1891
▁wonder 1892
port 1893
▁station 1894
▁Are 1895
▁closer 1896
▁places 1897
pt 1898
▁older 1899
▁holding 1900
▁wood 1901
▁University 1902
▁European 1903
▁cycle 1904
ium 1905
▁launch 1906
▁collection 1907
▁images 1908
▁phase 1909
Well 1910
▁tu 1911
▁college 1912
▁actions 1913
▁trans 1914
dge 1915
ory 1916
▁forget 1917
▁caught 1918
▁aware 1919
▁camera 1920
▁previously 1921
▁finished 1922
▁returned 1923
▁pair 1924
▁custom 1925
▁map 1926
▁signal 1927
▁El 1928
▁teams 1929
board 1930
▁leaving 1931
wa 1932
▁cloud 1933
▁communication 1934
▁Na 1935
form 1936
▁coffee 1937
ned 1938
ition 1939
av 1940
▁drug 1941
▁draw 1942
▁discussed 1943
▁presentation 1944
▁realized 1945
▁supposed 1946
▁North 1947
▁slowly 1948
▁raised 1949
▁shut 1950
▁church 1951
By 1952
▁Ga 1953
lan 1954
▁member 1955
▁acquisition 1956
▁despite 1957
▁opinion 1958
che 1959
▁rich 1960
▁tough 1961
▁wear 1962
▁imagine 1963
▁consistent 1964
vo 1965
▁killed 1966
▁regarding 1967
ose 1968
▁properties 1969
▁sister 1970
▁employees 1971
▁described 1972
▁West 1973
nk 1974
▁rain 1975
▁treat 1976
▁appeal 1977
▁conversation 1978
▁internal 1979
▁relative 1980
▁measures 1981
ological 1982
▁traffic 1983
▁ta 1984
▁push 1985
ged 1986
▁crowd 1987
ng 1988
light 1989
▁finish 1990
uc 1991
▁reference 1992
▁construction 1993
▁confidence 1994
▁degree 1995
▁goals 1996
▁former 1997
▁audience 1998
but 1999
Even 2000
gen 2001
den 2002
ade 2003
▁cat 2004
▁mass 2005
▁smooth 2006
▁lay 2007
▁relatively 2008
ase 2009
▁setting 2010
▁Pe 2011
▁Di 2012
▁Many 2013
▁confident 2014
▁doctor 2015
▁thoughts 2016
ification 2017
▁From 2018
▁happening 2019
How 2020
▁statement 2021
over 2022
▁spending 2023
▁thus 2024
od 2025
▁Per 2026
▁separate 2027
▁minute 2028
▁roll 2029
▁garden 2030
▁chain 2031
▁alternative 2032
▁enter 2033
▁covered 2034
▁watched 2035
ki 2036
ren 2037
▁anyway 2038
▁absolutely 2039
▁judge 2040
right 2041
▁completed 2042
▁walking 2043
back 2044
▁forwardlooking 2045
▁frame 2046
▁science 2047
▁changing 2048
▁ch 2049
Although 2050
▁becomes 2051
▁mostly 2052
lar 2053
▁pan 2054
▁Man 2055
▁reduction 2056
▁House 2057
▁budget 2058
▁gain 2059
▁Se 2060
▁ring 2061
▁background 2062
▁rise 2063
▁increases 2064
▁People 2065
▁independent 2066
▁Who 2067
ep 2068
▁requires 2069
X 2070
▁presented 2071
▁tea 2072
▁carry 2073
▁bag 2074
▁na 2075
▁profile 2076
▁putting 2077
▁stream 2078
▁Mc 2079
▁discussion 2080
▁smart 2081
▁Ar 2082
▁transition 2083
▁gr 2084
▁ha 2085
Yes 2086
▁India 2087
▁mobile 2088
▁offered 2089
ral 2090
▁pe 2091
▁li 2092
▁feature 2093
▁fix 2094
fa 2095
▁election 2096
▁Oh 2097
▁London 2098
▁opening 2099
▁Although 2100
▁sounds 2101
▁cap 2102
▁asking 2103
▁recommend 2104
▁World 2105
▁reflect 2106
▁double 2107
tan 2108
▁task 2109
▁camp 2110
▁hate 2111
▁differ 2112
of 2113
▁tree 2114
▁dinner 2115
▁sh 2116
▁fish 2117
tting 2118
▁challenges 2119
▁bus 2120
▁Sha 2121
▁sold 2122
▁lu 2123
▁caused 2124
ze 2125
▁engine 2126
▁exist 2127
▁load 2128
ay 2129
▁applications 2130
▁military 2131
▁lived 2132
▁exchange 2133
▁noticed 2134
▁nor 2135
▁weekend 2136
▁January 2137
▁advice 2138
▁smell 2139
▁identify 2140
ened 2141
▁driver 2142
▁filled 2143
▁Jo 2144
Do 2145
▁smiled 2146
▁eventually 2147
ris 2148
▁Bar 2149
▁keeping 2150
▁title 2151
▁economy 2152
▁determined 2153
▁biggest 2154
▁Ki 2155
▁mu 2156
▁quiet 2157
low 2158
▁sa 2159
▁battle 2160
▁hearing 2161
▁desire 2162
▁announced 2163
ther 2164
▁assume 2165
▁context 2166
▁society 2167
▁join 2168
▁materials 2169
▁offering 2170
▁cha 2171
▁trend 2172
▁meaning 2173
▁glance 2174
▁vision 2175
▁pen 2176
▁Christian 2177
▁sites 2178
▁advance 2179
▁object 2180
▁explore 2181
off 2182
▁vehicle 2183
▁expand 2184
▁families 2185
▁except 2186
▁fan 2187
▁March 2188
▁primarily 2189
▁relevant 2190
▁fat 2191
▁nation 2192
▁radio 2193
▁student 2194
▁evening 2195
▁sample 2196
▁managed 2197
▁welcome 2198
▁Ri 2199
az 2200
▁reduced 2201
▁devices 2202
▁limit 2203
▁relationships 2204
▁faster 2205
row 2206
▁weak 2207
▁proud 2208
▁ob 2209
▁essential 2210
▁shared 2211
▁repair 2212
▁beat 2213
▁enable 2214
ments 2215
▁Pi 2216
▁measure 2217
▁fill 2218
▁released 2219
▁continuing 2220
▁sta 2221
ult 2222
▁placed 2223
▁remove 2224
▁girls 2225
gi 2226
▁shook 2227
▁differences 2228
▁responsible 2229
▁sale 2230
tu 2231
▁competition 2232
▁metal 2233
▁decline 2234
ised 2235
tra 2236
▁reaction 2237
▁fruit 2238
▁error 2239
▁individuals 2240
▁select 2241
▁connection 2242
▁rec 2243
▁initiatives 2244
▁none 2245
▁Since 2246
▁stores 2247
▁tool 2248
▁grew 2249
▁California 2250
▁Christ 2251
▁central 2252
▁mention 2253
▁fe 2254
▁president 2255
cent 2256
▁pieces 2257
▁novel 2258
▁par 2259
▁prefer 2260
▁appears 2261
▁parties 2262
▁Every 2263
▁picked 2264
▁status 2265
▁Christmas 2266
vis 2267
▁identified 2268
▁holiday 2269
▁surprise 2270
▁delivery 2271
▁June 2272
▁letter 2273
▁decisions 2274
cc 2275
▁telling 2276
ran 2277
▁ba 2278
▁failure 2279
▁plenty 2280
▁package 2281
▁Chinese 2282
▁suddenly 2283
▁miss 2284
▁bigger 2285
▁ended 2286
Of 2287
▁becoming 2288
▁pattern 2289
▁President 2290
▁foreign 2291
▁largest 2292
▁testing 2293
Be 2294
▁helps 2295
▁plate 2296
▁Pre 2297
▁gift 2298
▁journey 2299
▁describe 2300
▁channel 2301
▁promise 2302
med 2303
An 2304
▁born 2305
▁horse 2306
pi 2307
▁established 2308
▁chest 2309
▁helpful 2310
ery 2311
▁consumer 2312
part 2313
▁knows 2314
▁author 2315
▁defendant 2316
▁elements 2317
▁mode 2318
▁British 2319
▁proceed 2320
▁ride 2321
▁arrived 2322
▁fingers 2323
▁cup 2324
▁failed 2325
▁Mi 2326
▁bought 2327
uck 2328
▁recipe 2329
rk 2330
▁jump 2331
fer 2332
▁applied 2333
▁missing 2334
▁wine 2335
▁schedule 2336
▁broken 2337
▁winter 2338
▁appeared 2339
istic 2340
▁selling 2341
▁organic 2342
▁shoulder 2343
▁dress 2344
▁mission 2345
▁partners 2346
▁highest 2347
▁expansion 2348
▁leg 2349
▁pool 2350
▁whose 2351
▁annual 2352
▁shall 2353
▁afternoon 2354
▁otherwise 2355
▁September 2356
▁solve 2357
▁comfort 2358
▁Park 2359
▁Sc 2360
▁pop 2361
▁rep 2362
▁seek 2363
▁Gu 2364
▁San 2365
▁prove 2366
▁raise 2367
▁nu 2368
▁Ex 2369
bs 2370
ug 2371
ox 2372
▁typically 2373
▁processes 2374
▁download 2375
▁risks 2376
▁pictures 2377
▁guard 2378
▁generate 2379
▁animals 2380
work 2381
gan 2382
hy 2383
▁National 2384
▁leadership 2385
▁fixed 2386
▁December 2387
str 2388
▁master 2389
her 2390
▁ideal 2391
par 2392
▁portion 2393
▁spring 2394
pp 2395
▁faith 2396
ina 2397
▁expenses 2398
▁sight 2399
▁requirements 2400
▁lock 2401
▁bio 2402
▁ci 2403
▁snow 2404
Just 2405
▁Google 2406
▁weren 2407
▁ice 2408
▁surprised 2409
▁Da 2410
▁command 2411
Because 2412
▁efficiency 2413
▁showing 2414
▁invest 2415
▁sha 2416
kin 2417
▁eating 2418
▁leader 2419
▁operation 2420
▁legs 2421
ake 2422
▁tight 2423
▁offset 2424
▁sick 2425
▁pa 2426
▁Will 2427
▁committed 2428
▁button 2429
▁theory 2430
rc 2431
▁federal 2432
nce 2433
val 2434
▁Paul 2435
▁married 2436
▁random 2437
▁technical 2438
▁empty 2439
▁wrote 2440
▁latest 2441
▁visual 2442
pro 2443
▁neck 2444
▁sector 2445
pl 2446
Or 2447
▁recognize 2448
▁truck 2449
▁tissue 2450
▁okay 2451
▁accident 2452
▁efficient 2453
▁Did 2454
▁noise 2455
▁aim 2456
▁Ben 2457
▁clothes 2458
▁Indian 2459
▁Cor 2460
cy 2461
▁timing 2462
▁stronger 2463
▁photos 2464
▁commitment 2465
▁April 2466
my 2467
▁remind 2468
▁leverage 2469
Also 2470
ically 2471
▁margins 2472
▁honest 2473
▁obvious 2474
▁afraid 2475
▁Obama 2476
mark 2477
▁published 2478
First 2479
▁stone 2480
▁served 2481
▁appreciate 2482
▁pet 2483
▁document 2484
▁murder 2485
▁sad 2486
▁helping 2487
▁expensive 2488
▁busy 2489
▁bone 2490
use 2491
▁familiar 2492
wi 2493
▁French 2494
▁loan 2495
▁Y 2496
▁David 2497
▁protection 2498
cr 2499
▁located 2500
▁therapy 2501
Once 2502
▁Each 2503
▁treated 2504
▁specifically 2505
▁conclusion 2506
▁claims 2507
▁gra 2508
▁kid 2509
▁trees 2510
▁song 2511
▁collect 2512
▁earth 2513
▁selection 2514
▁switch 2515
▁transfer 2516
▁characters 2517
▁somewhere 2518
▁peace 2519
▁England 2520
▁throw 2521
▁DNA 2522
▁buying 2523
▁strange 2524
▁Sunday 2525
▁bottle 2526
▁gold 2527
▁route 2528
▁connect 2529
▁mail 2530
▁species 2531
ched 2532
▁August 2533
▁attempt 2534
▁protein 2535
▁reports 2536
▁impossible 2537
▁improving 2538
▁auto 2539
▁football 2540
▁slide 2541
▁Su 2542
▁boat 2543
app 2544
▁Internet 2545
▁developing 2546
▁fuel 2547
▁removed 2548
▁totally 2549
▁Sometimes 2550
▁unless 2551
▁fans 2552
▁threat 2553
▁remained 2554
▁proper 2555
▁crack 2556
▁October 2557
▁argument 2558
▁mental 2559
▁anymore 2560
▁Day 2561
▁element 2562
▁liked 2563
ute 2564
▁pocket 2565
▁root 2566
▁More 2567
▁cast 2568
▁dance 2569
▁Act 2570
ec 2571
▁Where 2572
▁En 2573
▁combined 2574
▁defense 2575
▁carried 2576
▁wild 2577
▁nodded 2578
▁label 2579
▁represent 2580
ration 2581
▁pace 2582
▁server 2583
▁soul 2584
▁female 2585
▁thick 2586
▁mom 2587
▁expense 2588
▁thin 2589
▁Instead 2590
▁fundamental 2591
▁spirit 2592
▁operational 2593
▁concerned 2594
fully 2595
▁carefully 2596
▁lots 2597
Since 2598
▁decrease 2599
▁sharp 2600
▁regard 2601
▁laugh 2602
▁coach 2603
▁conduct 2604
▁speaking 2605
ture 2606
▁adding 2607
rus 2608
▁calm 2609
ency 2610
▁connected 2611
ney 2612
▁feels 2613
eg 2614
▁crime 2615
▁emotional 2616
▁contrast 2617
▁su 2618
▁Black 2619
amp 2620
▁dropped 2621
▁sorry 2622
▁manner 2623
▁promote 2624
▁exciting 2625
St 2626
▁July 2627
ome 2628
ern 2629
ctor 2630
ker 2631
rate 2632
▁UK 2633
▁leaves 2634
▁creative 2635
▁investigation 2636
▁infection 2637
▁produced 2638
za 2639
▁Their 2640
▁sexual 2641
▁obtained 2642
▁lips 2643
▁lie 2644
▁leaders 2645
▁workers 2646
▁entirely 2647
car 2648
▁secure 2649
▁estate 2650
▁willing 2651
From 2652
▁sharing 2653
▁Mu 2654
▁Hu 2655
ane 2656
▁layer 2657
▁November 2658
▁Facebook 2659
▁German 2660
▁Dr 2661
▁odd 2662
▁affected 2663
▁Have 2664
▁PC 2665
▁findings 2666
▁escape 2667
▁fail 2668
▁turning 2669
▁crazy 2670
so 2671
cu 2672
▁pushed 2673
▁capabilities 2674
field 2675
ham 2676
▁loud 2677
▁severe 2678
▁anywhere 2679
▁plants 2680
▁score 2681
▁East 2682
ants 2683
▁bear 2684
lf 2685
▁fund 2686
tain 2687
ew 2688
▁obtain 2689
▁possibly 2690
har 2691
▁discover 2692
▁ti 2693
▁freedom 2694
▁mistake 2695
▁strategies 2696
▁pipeline 2697
▁miles 2698
▁shouldn 2699
Your 2700
▁prison 2701
▁everybody 2702
▁cur 2703
nu 2704
▁brief 2705
▁classes 2706
▁sky 2707
▁inventory 2708
▁missed 2709
▁innovation 2710
▁apart 2711
▁comparison 2712
▁Ju 2713
▁entered 2714
▁planned 2715
▁Therefore 2716
serv 2717
▁percentage 2718
▁calls 2719
▁beside 2720
▁usual 2721
▁Mon 2722
▁occur 2723
▁transaction 2724
▁sources 2725
▁properly 2726
▁Good 2727
fo 2728
▁wearing 2729
▁delivered 2730
▁print 2731
During 2732
▁express 2733
▁corporate 2734
▁exposure 2735
▁lunch 2736
ces 2737
▁male 2738
▁refer 2739
▁understood 2740
▁knowing 2741
▁believed 2742
▁remaining 2743
fin 2744
▁Two 2745
▁constant 2746
▁Sam 2747
▁dad 2748
▁internet 2749
▁flash 2750
▁tour 2751
▁mountain 2752
▁dangerous 2753
▁pack 2754
▁Before 2755
▁ongoing 2756
▁twice 2757
▁Other 2758
ai 2759
▁license 2760
▁demonstrate 2761
▁mi 2762
▁Tra 2763
▁wedding 2764
iness 2765
comp 2766
▁fairly 2767
▁forced 2768
if 2769
▁stable 2770
pped 2771
▁yield 2772
▁trends 2773
▁jobs 2774
▁functions 2775
wn 2776
▁surgery 2777
▁harm 2778
▁animal 2779
▁Those 2780
▁returns 2781
▁Col 2782
▁broad 2783
ates 2784
Before 2785
▁Both 2786
which 2787
▁Great 2788
▁smoke 2789
▁cook 2790
▁apartment 2791
▁earn 2792
ja 2793
▁White 2794
▁recovery 2795
ace 2796
▁circumstances 2797
cus 2798
▁Fa 2799
▁alive 2800
▁marriage 2801
▁extend 2802
▁brown 2803
▁challenging 2804
▁belong 2805
▁operate 2806
Let 2807
press 2808
ue 2809
▁intention 2810
Most 2811
▁rose 2812
▁contain 2813
▁talent 2814
▁attractive 2815
▁colour 2816
▁reasonable 2817
▁necessarily 2818
▁payment 2819
▁glad 2820
▁concern 2821
▁whom 2822
▁symptoms 2823
▁Americans 2824
▁cards 2825
ify 2826
▁degrees 2827
air 2828
▁sugar 2829
▁coverage 2830
▁flight 2831
▁importance 2832
▁fashion 2833
▁infrastructure 2834
▁responsibility 2835
▁turns 2836
▁director 2837
▁tired 2838
▁assist 2839
▁storage 2840
▁components 2841
▁Washington 2842
ians 2843
▁hell 2844
▁enjoyed 2845
ole 2846
top 2847
▁See 2848
▁waste 2849
qu 2850
▁insight 2851
▁bowl 2852
ix 2853
▁pounds 2854
▁bedroom 2855
▁concentration 2856
▁salt 2857
▁wave 2858
▁mess 2859
▁organ 2860
▁techniques 2861
Her 2862
▁speech 2863
▁basically 2864
▁versus 2865
▁sin 2866
▁copy 2867
▁quarters 2868
ctic 2869
▁predict 2870
▁Red 2871
▁Har 2872
▁tumor 2873
▁reveal 2874
▁administration 2875
▁accounts 2876
▁enhance 2877
▁coat 2878
▁Ja 2879
▁restaurant 2880
▁largely 2881
▁drugs 2882
▁spin 2883
▁bringing 2884
▁lift 2885
▁trail 2886
▁department 2887
▁struggle 2888
▁topic 2889
▁Cha 2890
▁shareholders 2891
▁detailed 2892
▁birth 2893
▁teach 2894
▁sequence 2895
▁Friday 2896
▁input 2897
hu 2898
▁Che 2899
▁sports 2900
▁narrow 2901
▁deposit 2902
▁self 2903
house 2904
▁deserve 2905
▁February 2906
▁judgment 2907
▁rights 2908
ered 2909
▁silence 2910
mate 2911
▁log 2912
▁item 2913
▁leads 2914
▁friendly 2915
ax 2916
▁feed 2917
▁selected 2918
▁tail 2919
▁sufficient 2920
bar 2921
du 2922
▁cream 2923
▁Ch 2924
room 2925
▁perfectly 2926
▁teeth 2927
▁extent 2928
▁achieved 2929
▁underlying 2930
▁boys 2931
Y 2932
▁beach 2933
▁proposed 2934
▁encourage 2935
▁Canada 2936
▁circle 2937
▁le 2938
▁rent 2939
▁plastic 2940
▁asset 2941
▁paying 2942
▁High 2943
▁facility 2944
▁outcome 2945
▁paint 2946
▁debate 2947
▁desk 2948
▁wondering 2949
▁equal 2950
▁prop 2951
▁participants 2952
▁manager 2953
▁kick 2954
▁France 2955
▁panel 2956
ash 2957
▁fighting 2958
▁shoot 2959
down 2960
▁schools 2961
▁joy 2962
▁Lord 2963
▁flavor 2964
▁square 2965
▁row 2966
▁meat 2967
▁concerns 2968
▁names 2969
▁suggested 2970
▁outlook 2971
▁thanks 2972
ties 2973
▁depend 2974
▁matters 2975
▁district 2976
▁favor 2977
▁views 2978
lor 2979
▁studied 2980
▁establish 2981
▁signs 2982
▁starts 2983
Here 2984
▁opposite 2985
▁da 2986
▁fiscal 2987
▁worst 2988
▁Ru 2989
▁adjust 2990
▁mar 2991
▁Another 2992
▁sentence 2993
▁teaching 2994
▁acid 2995
all 2996
▁possibility 2997
▁execution 2998
▁indeed 2999
▁joint 3000
▁rid 3001
yn 3002
▁injury 3003
▁Street 3004
▁conflict 3005
ky 3006
win 3007
▁regions 3008
▁bond 3009
▁reward 3010
▁pitch 3011
▁laws 3012
▁laughed 3013
▁communities 3014
cor 3015
▁du 3016
▁somewhat 3017
▁Only 3018
▁river 3019
▁billion 3020
▁County 3021
▁discovered 3022
▁argue 3023
▁qua 3024
▁samples 3025
▁Nor 3026
▁Yet 3027
▁category 3028
▁survey 3029
▁named 3030
▁official 3031
illa 3032
▁facilities 3033
▁component 3034
▁rare 3035
▁effectively 3036
▁advanced 3037
nie 3038
▁parent 3039
▁angry 3040
▁gap 3041
▁roof 3042
▁install 3043
▁foundation 3044
▁tri 3045
▁occurred 3046
late 3047
gged 3048
nal 3049
▁strike 3050
▁agreed 3051
▁Si 3052
▁border 3053
▁defend 3054
▁filter 3055
▁ultimately 3056
▁ne 3057
▁sand 3058
▁meaningful 3059
▁procedure 3060
ject 3061
▁Thus 3062
▁experiment 3063
oma 3064
▁massive 3065
▁stuck 3066
ju 3067
ening 3068
▁careful 3069
▁tiny 3070
▁intended 3071
▁During 3072
▁Pri 3073
▁finger 3074
point 3075
▁century 3076
▁shopping 3077
▁beauty 3078
▁depending 3079
▁introduced 3080
log 3081
▁spa 3082
▁Ti 3083
▁calling 3084
▁Second 3085
▁pot 3086
ters 3087
▁stepped 3088
▁cars 3089
rr 3090
▁App 3091
▁investors 3092
▁Str 3093
▁hi 3094
▁Cl 3095
▁hall 3096
▁protest 3097
rry 3098
▁fi 3099
▁closely 3100
▁broke 3101
▁Was 3102
▁grown 3103
▁labor 3104
▁Take 3105
▁Jack 3106
▁worried 3107
▁cu 3108
▁adapt 3109
▁medium 3110
▁Perhaps 3111
▁neither 3112
▁routine 3113
▁m 3114
▁patterns 3115
▁feelings 3116
▁experiences 3117
ob 3118
▁appearance 3119
▁forms 3120
▁abuse 3121
▁gotten 3122
▁bike 3123
▁nose 3124
tive 3125
▁diet 3126
can 3127
▁x 3128
▁dynamic 3129
▁listening 3130
▁explained 3131
▁mod 3132
▁units 3133
▁shock 3134
▁wheel 3135
▁Tom 3136
▁ear 3137
▁pointed 3138
▁admit 3139
yl 3140
▁allowing 3141
▁monitor 3142
lation 3143
▁adult 3144
▁Make 3145
▁King 3146
▁Saturday 3147
▁habit 3148
▁blow 3149
▁brands 3150
▁constantly 3151
▁harder 3152
Therefore 3153
▁burn 3154
▁contains 3155
▁grade 3156
▁Ad 3157
▁chemical 3158
▁Fi 3159
▁momentum 3160
▁files 3161
▁stayed 3162
▁string 3163
▁contribute 3164
▁milk 3165
▁database 3166
▁island 3167
▁everywhere 3168
▁orders 3169
▁tomorrow 3170
▁exact 3171
▁agent 3172
book 3173
▁delay 3174
▁religious 3175
▁silent 3176
▁bound 3177
▁chart 3178
ulation 3179
▁losing 3180
▁strengthen 3181
▁tests 3182
▁fees 3183
▁defined 3184
▁numerous 3185
eration 3186
rop 3187
▁split 3188
▁gu 3189
▁Finally 3190
Many 3191
▁Earth 3192
▁moral 3193
▁seriously 3194
▁standards 3195
▁Russian 3196
▁external 3197
▁planet 3198
▁recognized 3199
▁supported 3200
▁tro 3201
▁Michael 3202
▁funny 3203
▁James 3204
▁fabric 3205
uring 3206
▁bra 3207
▁walls 3208
▁hang 3209
▁Am 3210
▁integration 3211
▁feedback 3212
▁iron 3213
▁maintenance 3214
▁Fo 3215
roll 3216
▁vary 3217
▁conclude 3218
▁pages 3219
▁plane 3220
ets 3221
▁funds 3222
▁mainly 3223
▁closing 3224
▁transformation 3225
▁Tri 3226
▁considering 3227
▁reserve 3228
▁mini 3229
▁cheap 3230
▁gate 3231
▁occasion 3232
▁storm 3233
▁signed 3234
▁forces 3235
▁plus 3236
▁manufacturing 3237
▁transport 3238
vent 3239
▁instrument 3240
▁depends 3241
▁curve 3242
▁bathroom 3243
han 3244
▁joined 3245
Con 3246
▁recall 3247
▁valuable 3248
▁aspects 3249
▁capture 3250
▁shirt 3251
▁Israel 3252
▁consumers 3253
▁proof 3254
▁accepted 3255
▁improvements 3256
▁revealed 3257
▁decades 3258
▁unable 3259
▁owner 3260
lk 3261
▁react 3262
▁ratio 3263
▁grand 3264
▁somehow 3265
ators 3266
▁association 3267
▁craft 3268
▁description 3269
▁format 3270
▁Ser 3271
Thank 3272
▁fer 3273
▁blame 3274
▁compare 3275
▁tall 3276
▁bread 3277
▁Texas 3278
cal 3279
▁forever 3280
▁Time 3281
rie 3282
▁parameters 3283
▁School 3284
▁aside 3285
▁shadow 3286
▁bodies 3287
▁gene 3288
▁Bu 3289
ack 3290
▁winning 3291
▁Russia 3292
▁evolution 3293
▁ph 3294
how 3295
▁recorded 3296
▁resulting 3297
▁colors 3298
▁incident 3299
▁para 3300
▁surrounding 3301
▁gaze 3302
▁practical 3303
▁stared 3304
▁cities 3305
▁television 3306
Ma 3307
▁chicken 3308
lon 3309
▁taught 3310
▁Wi 3311
ister 3312
▁def 3313
ung 3314
ement 3315
some 3316
▁folks 3317
▁hasn 3318
▁processing 3319
▁moments 3320
▁brush 3321
▁Fe 3322
▁Which 3323
▁hoping 3324
▁indicate 3325
▁tears 3326
▁stretch 3327
▁al 3328
▁dig 3329
▁pray 3330
▁repeat 3331
▁script 3332
▁electronic 3333
▁senior 3334
▁Mac 3335
▁Fl 3336
▁historical 3337
▁windows 3338
ford 3339
▁Any 3340
▁afford 3341
▁episode 3342
▁Air 3343
▁policies 3344
▁z 3345
▁magic 3346
▁terrible 3347
▁substantial 3348
Finally 3349
▁answers 3350
atory 3351
▁pin 3352
▁thousands 3353
Q 3354
▁consideration 3355
ana 3356
with 3357
▁measured 3358
uch 3359
Please 3360
▁profitability 3361
▁Joe 3362
▁runs 3363
▁peak 3364
▁r 3365
cho 3366
▁funding 3367
▁guarantee 3368
▁flu 3369
▁Get 3370
▁tested 3371
▁Germany 3372
▁honor 3373
▁Still 3374
oid 3375
▁relief 3376
▁Department 3377
Don 3378
▁rat 3379
af 3380
▁teacher 3381
▁potentially 3382
▁counsel 3383
well 3384
matic 3385
ef 3386
ken 3387
▁sweat 3388
▁indicated 3389
▁photograph 3390
▁semi 3391
try 3392
▁filed 3393
▁Japan 3394
▁shoes 3395
▁prepare 3396
▁blind 3397
ette 3398
load 3399
▁alcohol 3400
▁drove 3401
day 3402
▁climate 3403
▁Africa 3404
▁trick 3405
lam 3406
▁Comp 3407
▁records 3408
▁deals 3409
▁violence 3410
▁advertising 3411
▁vast 3412
read 3413
▁expressed 3414
▁functional 3415
▁technique 3416
▁barely 3417
nes 3418
emp 3419
▁increasingly 3420
▁definition 3421
▁Congress 3422
▁Australia 3423
▁partnership 3424
▁politics 3425
▁Florida 3426
▁Add 3427
▁creation 3428
▁plaintiff 3429
▁adjusted 3430
▁assessment 3431
▁greatest 3432
▁industrial 3433
▁cop 3434
▁environmental 3435
lay 3436
pon 3437
▁algorithm 3438
▁breakfast 3439
▁diagnosis 3440
▁entry 3441
Like 3442
▁loose 3443
▁lean 3444
▁Look 3445
▁George 3446
▁Center 3447
▁upper 3448
▁motor 3449
▁frequently 3450
▁agents 3451
▁approximately 3452
▁Monday 3453
De 3454
▁neuro 3455
nder 3456
▁stupid 3457
▁younger 3458
▁Western 3459
▁Use 3460
▁fly 3461
▁passion 3462
▁Church 3463
▁j 3464
▁nervous 3465
len 3466
▁Com 3467
▁William 3468
Ex 3469
▁mirror 3470
lly 3471
▁typical 3472
▁sport 3473
ied 3474
▁generated 3475
▁symbol 3476
▁cheese 3477
▁ski 3478
▁yesterday 3479
▁assess 3480
▁Over 3481
ular 3482
bil 3483
▁ease 3484
▁contribution 3485
▁Thanks 3486
▁disorder 3487
▁chosen 3488
▁hide 3489
▁fee 3490
▁choices 3491
▁village 3492
▁fantastic 3493
aries 3494
▁accurate 3495
Maybe 3496
▁session 3497
▁Ed 3498
▁trigger 3499
▁dogs 3500
▁causes 3501
▁fifth 3502
▁throat 3503
▁pla 3504
▁fo 3505
▁sides 3506
▁revenues 3507
▁den 3508
▁extended 3509
des 3510
▁luck 3511
▁painting 3512
▁division 3513
ising 3514
▁waited 3515
▁medicine 3516
ump 3517
mic 3518
▁resolution 3519
ka 3520
▁criminal 3521
▁successfully 3522
▁provision 3523
▁materially 3524
▁output 3525
▁extensive 3526
▁fellow 3527
▁capable 3528
▁peer 3529
▁savings 3530
▁technologies 3531
▁Green 3532
▁skill 3533
▁religion 3534
▁nurse 3535
tel 3536
▁arrive 3537
cept 3538
▁Today 3539
▁chi 3540
▁album 3541
▁compete 3542
▁forth 3543
▁Everyone 3544
▁ver 3545
▁Peter 3546
▁notes 3547
Thus 3548
▁str 3549
gue 3550
▁chose 3551
▁fault 3552
▁genetic 3553
▁kiss 3554
▁relax 3555
▁locations 3556
▁anger 3557
▁dedicated 3558
▁Lu 3559
ttle 3560
▁conservative 3561
▁neighbor 3562
▁scenario 3563
▁Pat 3564
▁stated 3565
pri 3566
▁complicated 3567
▁engagement 3568
▁domain 3569
▁stars 3570
▁volumes 3571
fu 3572
▁chat 3573
▁hole 3574
▁evaluate 3575
▁bomb 3576
rac 3577
▁exception 3578
▁approval 3579
▁muscle 3580
▁posted 3581
▁somebody 3582
▁identity 3583
dding 3584
▁comm 3585
▁fields 3586
▁Cr 3587
▁mechanism 3588
▁dozen 3589
▁longterm 3590
▁domestic 3591
vol 3592
▁library 3593
ale 3594
▁minimum 3595
▁brings 3596
long 3597
▁According 3598
▁bridge 3599
jo 3600
▁demonstrated 3601
▁lawyer 3602
▁shake 3603
▁lucky 3604
▁highlight 3605
▁premium 3606
▁suspect 3607
▁conducted 3608
▁retain 3609
▁drawing 3610
▁cultural 3611
▁origin 3612
▁Art 3613
phy 3614
▁officer 3615
▁stomach 3616
zz 3617
▁frequency 3618
▁famous 3619
▁succeed 3620
▁pure 3621
▁define 3622
▁dimension 3623
▁Does 3624
▁owners 3625
▁liquid 3626
According 3627
cycl 3628
▁objects 3629
▁facts 3630
▁agency 3631
▁variation 3632
cer 3633
▁doors 3634
▁officers 3635
▁reform 3636
▁charges 3637
▁outcomes 3638
▁facing 3639
▁replace 3640
▁nobody 3641
▁column 3642
▁practices 3643
gra 3644
▁intervention 3645
▁dust 3646
▁formal 3647
▁drivers 3648
gar 3649
▁explanation 3650
▁cheek 3651
▁north 3652
struct 3653
▁danger 3654
▁expert 3655
▁i 3656
▁represents 3657
▁confirmed 3658
▁Bill 3659
▁bother 3660
▁south 3661
nic 3662
▁height 3663
▁serving 3664
▁cry 3665
▁hyper 3666
▁objective 3667
▁wire 3668
▁Mary 3669
▁minor 3670
▁recover 3671
lia 3672
▁resistance 3673
▁existence 3674
▁hardly 3675
ugh 3676
ons 3677
▁guests 3678
▁meal 3679
ray 3680
▁plays 3681
wood 3682
▁ramp 3683
▁MM 3684
▁witness 3685
▁acquisitions 3686
▁readers 3687
▁lights 3688
▁collected 3689
▁depth 3690
▁officials 3691
pers 3692
▁Gi 3693
▁thread 3694
▁spiritual 3695
▁cho 3696
▁crew 3697
▁crash 3698
▁mad 3699
▁Un 3700
itive 3701
▁cake 3702
mar 3703
▁award 3704
osis 3705
▁Sal 3706
▁cluster 3707
duct 3708
▁tie 3709
▁implementation 3710
▁Mark 3711
ov 3712
▁dealing 3713
▁poll 3714
▁contracts 3715
▁pleasure 3716
▁experts 3717
▁discount 3718
▁quote 3719
▁landscape 3720
▁colon 3721
ock 3722
▁delivering 3723
▁wondered 3724
▁steel 3725
ez 3726
▁Commission 3727
▁butter 3728
▁communicate 3729
▁strain 3730
▁breast 3731
▁awesome 3732
▁yellow 3733
▁crisis 3734
▁tip 3735
▁attitude 3736
ella 3737
▁suffer 3738
▁et 3739
▁confirm 3740
▁links 3741
old 3742
▁automatically 3743
▁documents 3744
▁uses 3745
▁blend 3746
▁squ 3747
▁false 3748
▁lung 3749
▁attend 3750
▁incredible 3751
▁expertise 3752
▁approved 3753
hood 3754
▁strongly 3755
▁joke 3756
▁shower 3757
▁categories 3758
▁disc 3759
rg 3760
▁Frank 3761
▁Ni 3762
▁draft 3763
▁shoulders 3764
▁supplement 3765
▁evil 3766
mal 3767
▁Reg 3768
▁lovely 3769
▁port 3770
▁deeply 3771
▁visitors 3772
▁purposes 3773
ches 3774
▁unknown 3775
▁tips 3776
▁sets 3777
▁Je 3778
▁Bank 3779
sp 3780
▁channels 3781
▁deeper 3782
aving 3783
▁summary 3784
▁rev 3785
ev 3786
▁literature 3787
ya 3788
▁tonight 3789
▁pi 3790
▁General 3791
▁plot 3792
▁rank 3793
▁Nothing 3794
▁flexibility 3795
▁scheme 3796
▁formed 3797
▁pursue 3798
▁suffering 3799
▁n 3800
▁laid 3801
▁raw 3802
▁Dan 3803
▁sensor 3804
ivity 3805
▁Apple 3806
▁authority 3807
▁Last 3808
▁Min 3809
▁Bi 3810
▁obligation 3811
▁weird 3812
▁checked 3813
▁personally 3814
▁mixed 3815
▁lying 3816
▁gear 3817
▁shooting 3818
▁uncertainties 3819
▁commission 3820
▁cooking 3821
▁god 3822
▁forest 3823
▁exit 3824
▁Ter 3825
▁grip 3826
▁Again 3827
▁wh 3828
▁regulatory 3829
▁maximum 3830
▁angle 3831
▁coast 3832
▁curious 3833
▁drinking 3834
▁ingredients 3835
▁normally 3836
▁zone 3837
▁complain 3838
▁taxes 3839
▁ordered 3840
mat 3841
▁investing 3842
▁suppose 3843
▁Cla 3844
▁Japanese 3845
▁menu 3846
▁seeking 3847
▁currency 3848
▁forecast 3849
▁exceed 3850
atic 3851
▁publish 3852
ib 3853
ked 3854
Instead 3855
▁Cal 3856
▁reliable 3857
Every 3858
▁integrated 3859
rant 3860
▁chip 3861
bal 3862
▁writer 3863
▁Mr 3864
gy 3865
Go 3866
▁remarks 3867
▁formation 3868
box 3869
▁executive 3870
▁sauce 3871
ily 3872
▁grabbed 3873
lie 3874
▁Would 3875
▁Muslim 3876
▁positions 3877
▁robust 3878
▁volunteer 3879
▁civil 3880
nda 3881
rous 3882
▁humans 3883
▁execute 3884
▁convert 3885
▁Asia 3886
▁bunch 3887
▁alter 3888
▁decade 3889
▁suggests 3890
▁boost 3891
Co 3892
▁slip 3893
▁tells 3894
▁Right 3895
▁organizations 3896
▁permanent 3897
▁homes 3898
▁Keep 3899
▁attorney 3900
▁finance 3901
▁classic 3902
▁bath 3903
▁wake 3904
▁hip 3905
▁equity 3906
▁ill 3907
▁mono 3908
lit 3909
▁poly 3910
▁rush 3911
▁unusual 3912
▁rapidly 3913
▁Mike 3914
▁epi 3915
▁attract 3916
▁decor 3917
▁tank 3918
▁nearby 3919
▁aspect 3920
▁electric 3921
▁falling 3922
▁apparently 3923
▁grass 3924
▁neighborhood 3925
▁trained 3926
▁strip 3927
▁priority 3928
▁anticipate 3929
▁encouraged 3930
state 3931
▁Mor 3932
▁characteristics 3933
▁upgrade 3934
▁complaint 3935
▁prayer 3936
▁leaned 3937
▁cleaning 3938
▁Star 3939
▁launched 3940
▁tap 3941
▁teachers 3942
▁Big 3943
▁flag 3944
▁productivity 3945
▁reducing 3946
▁Ken 3947
rup 3948
otic 3949
▁plain 3950
▁extract 3951
▁passing 3952
▁hill 3953
▁lies 3954
gr 3955
▁justice 3956
▁aid 3957
▁sum 3958
▁rolled 3959
▁recommended 3960
cl 3961
▁introduce 3962
▁exc 3963
▁lit 3964
vin 3965
▁regularly 3966
▁celebrate 3967
▁proposal 3968
▁array 3969
▁Hi 3970
▁mood 3971
een 3972
▁supporting 3973
▁tradition 3974
▁index 3975
▁transform 3976
▁saved 3977
▁hidden 3978
▁attribute 3979
▁targets 3980
▁medication 3981
pha 3982
▁dev 3983
▁Mer 3984
▁memories 3985
▁evaluation 3986
▁Rob 3987
▁exp 3988
▁pump 3989
▁slight 3990
▁adults 3991
erson 3992
▁compound 3993
▁shit 3994
hen 3995
▁warrant 3996
▁adjustment 3997
lies 3998
▁circuit 3999
▁dish 4000
▁articles 4001
lock 4002
▁chocolate 4003
turn 4004
▁latter 4005
▁eliminate 4006
▁posts 4007
▁sensitive 4008
▁scientific 4009
▁chapter 4010
▁virus 4011
▁engage 4012
are 4013
bit 4014
net 4015
▁physician 4016
cap 4017
▁merely 4018
▁wound 4019
▁fu 4020
▁examples 4021
▁wrap 4022
▁segments 4023
bl 4024
▁CD 4025
▁banks 4026
▁nuclear 4027
▁movies 4028
▁deck 4029
▁Health 4030
lect 4031
▁ju 4032
▁dose 4033
gging 4034
▁positioned 4035
not 4036
▁Te 4037
▁destroy 4038
▁wing 4039
▁variable 4040
▁Unfortunately 4041
▁representative 4042
▁intra 4043
▁genes 4044
ook 4045
▁dividend 4046
▁Mexico 4047
▁listed 4048
tz 4049
dent 4050
▁survive 4051
▁br 4052
▁scan 4053
▁refused 4054
▁emergency 4055
▁hat 4056
▁parking 4057
▁acknowledge 4058
▁silver 4059
itch 4060
▁Everything 4061
ddle 4062
flow 4063
▁estimate 4064
▁syn 4065
▁rely 4066
▁Win 4067
▁enterprise 4068
▁graduate 4069
▁payments 4070
ica 4071
rb 4072
▁Alex 4073
▁y 4074
▁touched 4075
▁uniform 4076
▁decent 4077
vic 4078
▁Part 4079
▁noted 4080
▁disagree 4081
▁importantly 4082
▁framework 4083
▁resource 4084
▁outdoor 4085
van 4086
▁beer 4087
▁follows 4088
▁participate 4089
▁Roman 4090
▁intend 4091
▁intense 4092
while 4093
vy 4094
▁exhibit 4095
ino 4096
▁defeat 4097
▁tone 4098
tract 4099
▁Robert 4100
▁songs 4101
▁loans 4102
stand 4103
▁experiments 4104
▁updated 4105
bel 4106
▁incredibly 4107
▁awareness 4108
▁River 4109
▁Sch 4110
▁interests 4111
▁Super 4112
▁reverse 4113
chan 4114
▁centre 4115
▁situations 4116
▁examination 4117
▁enemy 4118
▁Canadian 4119
▁artist 4120
▁begins 4121
▁Union 4122
▁flowers 4123
▁suck 4124
ography 4125
▁examine 4126
▁receiving 4127
▁mask 4128
▁furniture 4129
▁anybody 4130
▁loop 4131
▁charged 4132
▁limitations 4133
▁engaged 4134
▁reporting 4135
▁superior 4136
graph 4137
▁expecting 4138
cle 4139
eth 4140
▁Bay 4141
▁correlation 4142
▁interaction 4143
▁permit 4144
stone 4145
▁belief 4146
▁messages 4147
▁steady 4148
▁Life 4149
▁Ph 4150
ong 4151
▁cent 4152
▁duty 4153
▁mal 4154
▁newspaper 4155
▁crucial 4156
xi 4157
▁conversion 4158
▁housing 4159
▁ga 4160
▁vital 4161
▁drawn 4162
▁remote 4163
bri 4164
▁killing 4165
fl 4166
equ 4167
▁immediate 4168
Can 4169
▁inform 4170
▁EU 4171
▁tremendous 4172
▁vehicles 4173
pen 4174
ional 4175
▁essentially 4176
▁candidate 4177
▁stands 4178
▁lease 4179
▁mechanisms 4180
▁streets 4181
▁trading 4182
list 4183
▁exists 4184
▁literally 4185
▁rising 4186
▁saving 4187
▁pur 4188
▁Du 4189
▁intelligence 4190
▁Sun 4191
OS 4192
▁era 4193
▁warning 4194
Each 4195
▁remembered 4196
▁academic 4197
▁creature 4198
ote 4199
path 4200
ith 4201
bin 4202
▁contained 4203
pir 4204
▁Hol 4205
▁implement 4206
▁Inter 4207
▁absolute 4208
▁Tuesday 4209
▁manufacturer 4210
▁scared 4211
▁pilot 4212
▁damn 4213
▁proportion 4214
▁ref 4215
▁delicious 4216
ball 4217
▁bias 4218
▁emotions 4219
▁drain 4220
▁Home 4221
▁league 4222
▁prompt 4223
▁employee 4224
▁visible 4225
▁rear 4226
▁Up 4227
ville 4228
Ca 4229
▁rarely 4230
▁bull 4231
▁extreme 4232
▁fulfill 4233
▁performing 4234
▁studio 4235
▁videos 4236
▁naturally 4237
▁bug 4238
▁burden 4239
ware 4240
▁pal 4241
▁impacted 4242
▁structures 4243
▁ignore 4244
▁knee 4245
▁Though 4246
▁inner 4247
▁recognition 4248
▁League 4249
▁Yeah 4250
▁cutting 4251
▁critic 4252
▁authors 4253
▁Twitter 4254
▁figures 4255
▁informed 4256
▁ancient 4257
▁grab 4258
▁comprehensive 4259
▁anxiety 4260
▁regional 4261
▁Bro 4262
▁variables 4263
▁managing 4264
▁residents 4265
▁Board 4266
▁Bea 4267
▁whenever 4268
▁approaches 4269
▁carrying 4270
▁tra 4271
▁filing 4272
▁extension 4273
▁subjects 4274
▁node 4275
▁suitable 4276
▁adventure 4277
▁losses 4278
▁Under 4279
▁Very 4280
▁headed 4281
shed 4282
▁hook 4283
▁gentle 4284
▁Work 4285
bble 4286
▁upset 4287
▁rum 4288
▁ri 4289
▁controlled 4290
▁knock 4291
▁struck 4292
▁lap 4293
▁equation 4294
▁replaced 4295
▁expanding 4296
▁attacks 4297
▁universe 4298
don 4299
▁anticipated 4300
▁ban 4301
▁initially 4302
▁proteins 4303
igh 4304
head 4305
▁Read 4306
▁joining 4307
▁flood 4308
▁hero 4309
▁wage 4310
▁scar 4311
▁Shi 4312
▁rooms 4313
chi 4314
▁causing 4315
▁seconds 4316
tail 4317
gress 4318
▁kinds 4319
▁stack 4320
onic 4321
▁privacy 4322
bra 4323
▁Web 4324
▁Group 4325
▁weapons 4326
▁tag 4327
▁detect 4328
▁buildings 4329
▁survival 4330
▁Plan 4331
▁spell 4332
▁threw 4333
▁Ke 4334
▁kit 4335
▁letting 4336
ese 4337
▁settings 4338
▁discipline 4339
▁networks 4340
▁sustainable 4341
itis 4342
▁clinic 4343
lig 4344
▁holds 4345
▁acquired 4346
▁Ab 4347
▁tape 4348
▁paused 4349
▁stability 4350
▁exposed 4351
▁searching 4352
▁rating 4353
▁reviews 4354
▁Lake 4355
▁mixture 4356
▁cookies 4357
▁guilty 4358
▁inhibit 4359
▁installed 4360
Any 4361
▁letters 4362
▁interact 4363
▁rational 4364
▁cor 4365
▁Republican 4366
▁wealth 4367
▁chronic 4368
▁MS 4369
▁fluid 4370
▁breaking 4371
▁African 4372
▁soil 4373
▁l 4374
▁Brazil 4375
lea 4376
▁hire 4377
▁involve 4378
▁focusing 4379
▁dreams 4380
▁Va 4381
ough 4382
▁default 4383
▁stain 4384
▁procedures 4385
▁Love 4386
▁grant 4387
ulated 4388
▁Tu 4389
▁assistance 4390
▁heavily 4391
▁millions 4392
▁Em 4393
▁experimental 4394
▁density 4395
▁favorable 4396
▁bow 4397
▁atmosphere 4398
▁conventional 4399
Okay 4400
▁assumptions 4401
▁id 4402
ili 4403
▁attached 4404
▁candidates 4405
▁illegal 4406
▁AM 4407
▁distinct 4408
▁interpret 4409
▁discussions 4410
▁arch 4411
▁beneath 4412
▁Next 4413
▁locked 4414
▁swing 4415
▁native 4416
▁Wednesday 4417
▁absorb 4418
▁moon 4419
oe 4420
▁breathing 4421
▁clock 4422
▁instructions 4423
▁u 4424
▁faced 4425
▁franchise 4426
▁revolution 4427
▁mon 4428
▁mortgage 4429
▁birthday 4430
▁Tru 4431
sure 4432
pre 4433
▁consequences 4434
▁confused 4435
▁Come 4436
▁preparation 4437
▁Smith 4438
▁hum 4439
▁statistical 4440
▁recording 4441
▁boss 4442
▁pushing 4443
▁Despite 4444
play 4445
▁aggressive 4446
▁linear 4447
▁issued 4448
▁AC 4449
uous 4450
zy 4451
▁pathway 4452
▁Island 4453
▁register 4454
▁everyday 4455
▁proven 4456
▁reader 4457
▁widely 4458
▁Britain 4459
▁investigate 4460
▁magazine 4461
▁van 4462
▁soldiers 4463
▁scratch 4464
▁moves 4465
▁Op 4466
▁reputation 4467
ria 4468
pher 4469
▁impressive 4470
py 4471
fall 4472
▁marketplace 4473
▁minimal 4474
▁Bible 4475
▁linked 4476
▁sink 4477
▁Chicago 4478
▁consult 4479
▁container 4480
▁restaurants 4481
wo 4482
▁import 4483
▁responses 4484
▁regardless 4485
▁pad 4486
▁resulted 4487
▁Such 4488
▁differently 4489
▁Dad 4490
▁acting 4491
▁eggs 4492
▁university 4493
▁secondary 4494
ching 4495
▁rough 4496
Both 4497
▁assumed 4498
pper 4499
▁dec 4500
oke 4501
▁lifted 4502
▁gonna 4503
▁recruit 4504
▁Bri 4505
▁reflected 4506
▁Clinton 4507
▁possess 4508
▁etc 4509
▁arrangement 4510
▁organized 4511
▁profitable 4512
▁union 4513
▁intent 4514
▁mat 4515
▁jury 4516
met 4517
▁Something 4518
▁absence 4519
▁destination 4520
▁embrace 4521
▁employer 4522
▁consistently 4523
where 4524
▁appointment 4525
▁combine 4526
▁tasks 4527
mination 4528
die 4529
▁examined 4530
▁carrier 4531
▁borrow 4532
▁shipping 4533
cra 4534
▁provider 4535
▁competitors 4536
▁transactions 4537
▁resist 4538
dia 4539
▁army 4540
▁Bob 4541
▁knees 4542
▁leak 4543
▁PM 4544
▁flying 4545
▁grateful 4546
▁targeted 4547
▁op 4548
▁incremental 4549
rated 4550
▁opt 4551
arch 4552
▁melt 4553
ancy 4554
▁limits 4555
▁gender 4556
▁staying 4557
▁giant 4558
meter 4559
ux 4560
▁sleeping 4561
▁formula 4562
▁trace 4563
▁replacement 4564
▁consent 4565
put 4566
▁submit 4567
▁darkness 4568
▁settled 4569
▁airport 4570
Second 4571
▁valid 4572
▁Him 4573
▁maintaining 4574
▁sounded 4575
Se 4576
▁expanded 4577
▁victim 4578
▁Jewish 4579
rating 4580
▁hanging 4581
▁citizens 4582
▁cable 4583
▁visiting 4584
▁Dar 4585
▁slid 4586
▁Thursday 4587
▁Sta 4588
▁Adam 4589
▁Council 4590
▁occurs 4591
▁encounter 4592
▁outstanding 4593
position 4594
▁criteria 4595
▁protocol 4596
▁inspired 4597
▁immune 4598
▁boil 4599
▁commit 4600
▁denied 4601
ene 4602
▁youth 4603
▁stroke 4604
▁indication 4605
▁impression 4606
▁diseases 4607
▁depression 4608
▁Paris 4609
▁fri 4610
▁platforms 4611
▁excuse 4612
▁instant 4613
▁vessel 4614
▁sal 4615
table 4616
▁Brown 4617
▁Four 4618
▁rapid 4619
▁Trans 4620
▁fleet 4621
▁principle 4622
▁loving 4623
▁vertical 4624
lish 4625
range 4626
▁crystal 4627
▁dynamics 4628
▁Iraq 4629
▁exceptional 4630
▁browser 4631
▁graphic 4632
▁guest 4633
▁authorities 4634
▁partially 4635
▁implemented 4636
▁Service 4637
▁doctors 4638
▁Dis 4639
More 4640
▁lifestyle 4641
▁Grand 4642
▁sudden 4643
▁desired 4644
▁battery 4645
▁originally 4646
▁burst 4647
▁suffered 4648
▁engineering 4649
▁supplier 4650
▁optimize 4651
▁Without 4652
▁Government 4653
Other 4654
▁completion 4655
like 4656
▁sending 4657
▁Could 4658
▁dear 4659
hor 4660
rov 4661
▁mount 4662
▁settle 4663
▁wash 4664
▁dealer 4665
▁engineer 4666
▁sixth 4667
▁staring 4668
▁dependent 4669
own 4670
aging 4671
ett 4672
▁knife 4673
▁hunt 4674
Another 4675
▁ID 4676
▁diverse 4677
▁household 4678
▁owned 4679
ologist 4680
new 4681
▁interpretation 4682
▁equally 4683
▁scrap 4684
▁emerge 4685
▁wise 4686
▁moderate 4687
▁disappear 4688
▁passenger 4689
▁drew 4690
▁preferred 4691
▁inflation 4692
▁installation 4693
▁ocean 4694
▁patch 4695
▁calculation 4696
▁Play 4697
▁juice 4698
▁lady 4699
▁figured 4700
▁spark 4701
▁cheer 4702
▁pit 4703
▁div 4704
▁pepper 4705
▁Sea 4706
▁consumption 4707
▁pretend 4708
▁Amazon 4709
▁shade 4710
▁alarm 4711
▁granted 4712
uction 4713
▁professionals 4714
▁committee 4715
▁supplies 4716
wise 4717
iff 4718
Despite 4719
▁essay 4720
▁weakness 4721
▁corresponding 4722
▁reflects 4723
▁Sure 4724
▁speaker 4725
▁excess 4726
PS 4727
▁stairs 4728
▁Party 4729
▁Steve 4730
iz 4731
▁ruin 4732
▁painful 4733
▁Italian 4734
▁interface 4735
▁Richard 4736
▁rental 4737
▁casual 4738
▁Ge 4739
▁subsequent 4740
▁providers 4741
▁estimated 4742
▁hardware 4743
▁marked 4744
▁Catholic 4745
▁institutions 4746
▁injuries 4747
▁sought 4748
▁papers 4749
▁plea 4750
▁Cu 4751
▁childhood 4752
▁king 4753
▁International 4754
▁programme 4755
▁answered 4756
▁jo 4757
▁hung 4758
▁clo 4759
char 4760
▁innovative 4761
▁Jim 4762
oon 4763
Today 4764
▁mill 4765
ital 4766
▁accuracy 4767
▁Middle 4768
umb 4769
▁nerve 4770
▁branch 4771
▁stages 4772
ore 4773
▁tear 4774
gle 4775
▁pink 4776
▁ears 4777
▁fiber 4778
▁panic 4779
▁modest 4780
▁relation 4781
▁updates 4782
fil 4783
▁bird 4784
▁enhanced 4785
gene 4786
▁pulling 4787
▁compensation 4788
▁regret 4789
▁capability 4790
▁lens 4791
▁wore 4792
▁bat 4793
▁Whether 4794
▁comparable 4795
▁snap 4796
▁ir 4797
pot 4798
▁bake 4799
▁Old 4800
▁inspiration 4801
▁CS 4802
▁gently 4803
▁Democrats 4804
isation 4805
▁principles 4806
▁illness 4807
IS 4808
▁steal 4809
▁seal 4810
▁Windows 4811
loc 4812
▁disturb 4813
▁interior 4814
rick 4815
▁charm 4816
▁nail 4817
▁winner 4818
cut 4819
▁vacation 4820
place 4821
▁pressed 4822
Li 4823
Their 4824
▁introduction 4825
▁shame 4826
▁Chris 4827
▁correctly 4828
sha 4829
▁collapse 4830
PA 4831
omic 4832
▁Martin 4833
▁satisfaction 4834
▁structural 4835
▁decreased 4836
vari 4837
▁Pan 4838
▁respectively 4839
▁Hill 4840
▁fewer 4841
▁advise 4842
▁grace 4843
▁leather 4844
▁representation 4845
▁barrier 4846
▁Moreover 4847
▁pound 4848
▁insert 4849
▁satisfied 4850
▁enormous 4851
lash 4852
▁convenient 4853
▁satisfy 4854
▁Jeff 4855
nge 4856
▁heading 4857
fr 4858
▁composition 4859
▁export 4860
▁protected 4861
Pa 4862
▁handed 4863
▁begun 4864
▁visited 4865
▁awful 4866
ulate 4867
▁scope 4868
▁clothing 4869
▁preference 4870
▁chief 4871
▁biological 4872
▁arise 4873
▁Ly 4874
▁pu 4875
Lo 4876
▁transmission 4877
▁audio 4878
water 4879
▁grave 4880
Com 4881
▁yard 4882
▁fold 4883
▁dressed 4884
ero 4885
▁pride 4886
icle 4887
▁errors 4888
▁artists 4889
▁tied 4890
▁restore 4891
▁hoped 4892
▁logic 4893
▁flexible 4894
direct 4895
▁prim 4896
Those 4897
▁overcome 4898
cro 4899
▁Harry 4900
▁preserve 4901
▁ordinary 4902
▁accounting 4903
▁returning 4904
▁tune 4905
iding 4906
▁mild 4907
▁sponsor 4908
▁liver 4909
▁Sw 4910
▁invited 4911
▁permission 4912
Over 4913
▁rang 4914
▁maintained 4915
elle 4916
▁adequate 4917
▁Bra 4918
▁consume 4919
▁ray 4920
▁blocks 4921
ively 4922
▁periods 4923
▁scheduled 4924
▁editor 4925
▁authentic 4926
nne 4927
▁monthly 4928
▁represented 4929
▁lifetime 4930
▁unexpected 4931
▁involves 4932
▁spectrum 4933
▁prediction 4934
▁jacket 4935
▁announcement 4936
▁forgotten 4937
▁Ko 4938
▁pleasant 4939
▁bid 4940
▁tension 4941
▁Pla 4942
▁texture 4943
▁Three 4944
▁legacy 4945
▁personality 4946
▁mistakes 4947
▁punch 4948
▁victory 4949
▁Matt 4950
▁orange 4951
▁pile 4952
▁estimates 4953
▁crossed 4954
zo 4955
▁participation 4956
▁Wa 4957
▁pie 4958
▁designer 4959
▁opposed 4960
▁ni 4961
▁sail 4962
▁sighed 4963
▁Queen 4964
▁lake 4965
▁gray 4966
▁fallen 4967
hal 4968
▁greatly 4969
▁radical 4970
▁module 4971
▁tongue 4972
▁Bur 4973
Yet 4974
▁carbon 4975
▁clip 4976
▁Out 4977
▁detection 4978
▁edit 4979
▁reaching 4980
body 4981
▁regulation 4982
▁destroyed 4983
▁venture 4984
▁evaluated 4985
▁icon 4986
▁DC 4987
▁OK 4988
▁weapon 4989
nate 4990
▁detected 4991
▁Ste 4992
▁Furthermore 4993
▁actively 4994
▁simulation 4995
▁render 4996
▁opponent 4997
▁entertainment 4998
▁ticket 4999
hel 5000
▁expectation 5001
▁affordable 5002
▁adopt 5003
▁jumped 5004
▁slice 5005
▁Remember 5006
▁rolling 5007
▁College 5008
▁agencies 5009
▁happiness 5010
▁accelerate 5011
▁publication 5012
▁investigated 5013
▁chill 5014
▁Miss 5015
arian 5016
▁seventh 5017
▁crop 5018
▁tech 5019
Z 5020
▁screw 5021
▁graph 5022
▁Game 5023
▁muscles 5024
▁convinced 5025
AC 5026
▁purchased 5027
▁Australian 5028
▁tube 5029
▁continuous 5030
▁scores 5031
▁signals 5032
▁concrete 5033
▁dining 5034
ature 5035
▁Rock 5036
▁brilliant 5037
▁Try 5038
▁Gar 5039
▁pipe 5040
▁ought 5041
▁meetings 5042
▁Thomas 5043
Furthermore 5044
▁promotion 5045
▁proved 5046
▁fired 5047
▁corn 5048
▁unlikely 5049
▁Mom 5050
▁invention 5051
▁surgical 5052
▁birds 5053
cast 5054
j 5055
▁boxes 5056
▁trials 5057
▁calculated 5058
▁violent 5059
▁Chi 5060
▁asleep 5061
▁Luc 5062
▁gains 5063
Sometimes 5064
▁availability 5065
▁construct 5066
▁Los 5067
▁weigh 5068
▁employment 5069
▁translate 5070
ele 5071
ache 5072
▁observation 5073
▁Er 5074
▁architecture 5075
▁choosing 5076
▁claimed 5077
▁producing 5078
▁Bel 5079
▁tin 5080
▁monitoring 5081
▁powder 5082
▁Think 5083
▁Ver 5084
ocyte 5085
▁deny 5086
you 5087
▁contributed 5088
▁healing 5089
▁Slide 5090
wing 5091
print 5092
▁climb 5093
▁audit 5094
▁acquire 5095
▁Mil 5096
▁CT 5097
▁crush 5098
claim 5099
▁analyzed 5100
▁elsewhere 5101
▁Men 5102
▁gut 5103
▁lab 5104
▁confront 5105
▁bars 5106
▁shell 5107
▁Had 5108
▁Law 5109
cious 5110
▁cancel 5111
▁difficulty 5112
▁IP 5113
berg 5114
▁highlights 5115
▁Scott 5116
▁ceiling 5117
▁Henry 5118
Oh 5119
▁uncertainty 5120
▁rail 5121
▁belt 5122
▁duration 5123
▁struggling 5124
▁promised 5125
▁molecular 5126
▁awake 5127
Ch 5128
▁crying 5129
▁prime 5130
▁producer 5131
▁alleged 5132
▁west 5133
▁parallel 5134
▁fiction 5135
▁Hall 5136
cker 5137
▁immuno 5138
▁molecule 5139
Moreover 5140
▁Central 5141
emia 5142
war 5143
▁cigarette 5144
▁suppress 5145
cher 5146
▁operator 5147
▁surely 5148
▁temporary 5149
▁egg 5150
▁conversations 5151
▁rip 5152
▁AD 5153
▁quit 5154
▁behaviour 5155
▁accomplish 5156
▁palm 5157
▁urban 5158
▁entrance 5159
▁Tim 5160
▁arrest 5161
▁asterisk 5162
▁interactions 5163
▁Cup 5164
▁lessons 5165
Al 5166
▁emerging 5167
cate 5168
▁neutral 5169
▁bump 5170
ality 5171
▁refuse 5172
▁substance 5173
RS 5174
▁Wall 5175
▁urge 5176
People 5177
▁Open 5178
▁Republicans 5179
▁measurements 5180
▁burning 5181
▁spec 5182
▁ultimate 5183
▁affair 5184
▁waves 5185
pic 5186
▁solar 5187
▁lesson 5188
▁covers 5189
▁unlike 5190
▁till 5191
▁smoking 5192
▁stored 5193
▁heaven 5194
▁wrapped 5195
▁Cho 5196
Pro 5197
▁Put 5198
▁broader 5199
▁emission 5200
▁colleagues 5201
▁Han 5202
▁approached 5203
▁cock 5204
▁pig 5205
▁directed 5206
▁diversity 5207
▁alert 5208
▁Services 5209
urg 5210
CC 5211
▁determination 5212
▁addressed 5213
qua 5214
▁correspond 5215
cade 5216
view 5217
▁filling 5218
▁fought 5219
Additionally 5220
▁Free 5221
▁glow 5222
▁briefly 5223
▁dying 5224
Mar 5225
▁repeated 5226
verse 5227
ifying 5228
▁beam 5229
▁Spanish 5230
▁Char 5231
▁ya 5232
▁agenda 5233
▁distinguish 5234
▁shots 5235
▁tire 5236
▁Jen 5237
▁machines 5238
hand 5239
▁gay 5240
▁assert 5241
ek 5242
▁optimal 5243
▁shrugged 5244
▁Post 5245
▁opinions 5246
▁Pu 5247
▁magnetic 5248
▁apple 5249
▁apparent 5250
▁coin 5251
▁bonus 5252
▁Find 5253
▁disconnect 5254
▁delete 5255
▁Max 5256
▁tower 5257
Le 5258
cha 5259
▁CA 5260
▁drunk 5261
RNA 5262
▁configuration 5263
▁Office 5264
▁consist 5265
▁whereas 5266
▁toxic 5267
ik 5268
break 5269
▁researchers 5270
▁hack 5271
rog 5272
acy 5273
▁settlement 5274
▁AS 5275
▁vendor 5276
▁metrics 5277
▁eighth 5278
▁intensity 5279
▁hopefully 5280
▁template 5281
▁bulk 5282
▁refresh 5283
▁stranger 5284
▁broadcast 5285
▁pose 5286
▁Plus 5287
Unfortunately 5288
▁si 5289
▁contest 5290
▁oh 5291
▁adopted 5292
▁stem 5293
▁Italy 5294
bro 5295
▁gesture 5296
▁Senate 5297
ural 5298
▁injured 5299
▁ce 5300
▁achievement 5301
▁Company 5302
Mo 5303
▁disaster 5304
▁Johnson 5305
▁victims 5306
look 5307
q 5308
lum 5309
▁regime 5310
▁beliefs 5311
▁tender 5312
▁lip 5313
▁passage 5314
▁divorce 5315
▁reminder 5316
▁binding 5317
▁Besides 5318
▁writers 5319
front 5320
▁disappointed 5321
▁initiative 5322
▁minister 5323
▁CO 5324
▁layers 5325
▁illustrate 5326
▁Supreme 5327
▁reflection 5328
▁fur 5329
▁Year 5330
▁Through 5331
away 5332
▁evident 5333
▁checking 5334
▁transportation 5335
▁gar 5336
ara 5337
▁bite 5338
▁concerning 5339
▁principal 5340
▁east 5341
▁therapeutic 5342
▁bench 5343
▁breathe 5344
▁electrical 5345
▁squeeze 5346
▁tele 5347
▁couch 5348
lip 5349
▁campus 5350
▁rice 5351
▁pregnant 5352
▁physically 5353
▁Latin 5354
▁distract 5355
▁specialist 5356
▁listened 5357
▁enjoying 5358
▁observe 5359
▁rescue 5360
▁ignored 5361
Where 5362
▁indicator 5363
▁regulations 5364
▁educational 5365
▁Mag 5366
▁Blue 5367
Sa 5368
what 5369
▁calendar 5370
▁defect 5371
▁pause 5372
▁conscious 5373
stream 5374
▁petition 5375
▁philosophy 5376
▁robot 5377
▁refine 5378
▁measurement 5379
even 5380
▁Par 5381
▁offense 5382
▁resume 5383
more 5384
▁booking 5385
▁guidelines 5386
▁hypo 5387
ush 5388
▁universal 5389
▁dating 5390
▁sacrifice 5391
RA 5392
▁Power 5393
▁grain 5394
▁cow 5395
mun 5396
▁apps 5397
▁studying 5398
▁wander 5399
▁golf 5400
pho 5401
▁trauma 5402
▁Stan 5403
shop 5404
pect 5405
▁pale 5406
arrow 5407
ibility 5408
gie 5409
▁virtual 5410
▁picking 5411
▁perception 5412
▁Should 5413
▁liberal 5414
▁dive 5415
▁compromise 5416
▁Back 5417
▁pat 5418
▁fool 5419
▁complexity 5420
▁twin 5421
▁pun 5422
▁desert 5423
ula 5424
ok 5425
▁scientists 5426
▁carpet 5427
▁commonly 5428
▁bags 5429
▁demon 5430
▁bitter 5431
▁telephone 5432
▁aircraft 5433
▁encouraging 5434
▁oven 5435
▁trap 5436
▁Anyway 5437
▁covering 5438
▁acute 5439
▁requirement 5440
▁optimistic 5441
▁Greek 5442
▁Microsoft 5443
▁excitement 5444
▁gross 5445
▁disappeared 5446
▁twist 5447
▁combat 5448
▁wooden 5449
▁Arab 5450
▁journalist 5451
▁elected 5452
▁raising 5453
▁Ref 5454
▁gathered 5455
▁Father 5456
▁Asian 5457
▁surrounded 5458
▁hint 5459
▁Never 5460
inate 5461
▁quantum 5462
▁yell 5463
▁usage 5464
▁impressed 5465
▁garage 5466
▁adoption 5467
ari 5468
▁Daniel 5469
▁bullet 5470
icular 5471
▁spoken 5472
▁guitar 5473
▁healthcare 5474
▁intellectual 5475
▁Sur 5476
migrant 5477
▁whisper 5478
▁sensitivity 5479
▁connections 5480
▁Prince 5481
hold 5482
▁steam 5483
AP 5484
mus 5485
▁Charles 5486
▁programming 5487
▁voters 5488
poli 5489
▁gained 5490
▁laughing 5491
▁Check 5492
▁earned 5493
▁topics 5494
▁gym 5495
upp 5496
Two 5497
▁managers 5498
▁iPhone 5499
▁admitted 5500
▁footprint 5501
just 5502
▁legislation 5503
▁bur 5504
▁min 5505
▁occasionally 5506
▁Rose 5507
▁Turn 5508
sses 5509
▁Committee 5510
▁analyze 5511
Un 5512
▁Jews 5513
▁arguments 5514
▁privilege 5515
▁gal 5516
▁restrict 5517
▁courage 5518
▁collective 5519
▁Boston 5520
▁Cat 5521
▁visibility 5522
▁employed 5523
▁subscribe 5524
▁genuine 5525
▁facilitate 5526
▁tourist 5527
▁offerings 5528
town 5529
pan 5530
▁indicates 5531
▁pour 5532
lysis 5533
▁info 5534
▁isolated 5535
▁nutrition 5536
▁badly 5537
bed 5538
▁vitamin 5539
▁mice 5540
▁registered 5541
▁sake 5542
▁meals 5543
Last 5544
▁arrested 5545
▁matches 5546
eb 5547
▁holes 5548
▁Val 5549
▁financing 5550
▁priorities 5551
band 5552
▁mature 5553
▁puzzle 5554
▁translation 5555
▁tab 5556
ena 5557
▁removal 5558
▁leap 5559
maker 5560
▁dirt 5561
▁Water 5562
▁containing 5563
▁resolve 5564
Thanks 5565
▁hated 5566
▁accessible 5567
▁undertake 5568
▁Too 5569
▁demo 5570
▁Having 5571
▁contributions 5572
▁analyses 5573
▁tournament 5574
▁Iran 5575
▁fuck 5576
ending 5577
▁journal 5578
▁hungry 5579
unk 5580
▁ridiculous 5581
▁drag 5582
▁Light 5583
▁exam 5584
▁assignment 5585
▁Call 5586
▁District 5587
▁attempts 5588
▁vegetables 5589
Ne 5590
▁negotiation 5591
▁entering 5592
▁mile 5593
▁registration 5594
▁clue 5595
dom 5596
nel 5597
▁gifts 5598
▁favourite 5599
▁ja 5600
▁Market 5601
▁Whatever 5602
▁hydro 5603
▁assault 5604
▁motivation 5605
rine 5606
▁fraction 5607
▁rig 5608
▁monster 5609
Me 5610
▁utilize 5611
▁blanket 5612
ama 5613
▁spare 5614
▁dispute 5615
▁upcoming 5616
▁cute 5617
inated 5618
▁concluded 5619
▁referred 5620
▁Virginia 5621
▁drift 5622
▁rot 5623
▁EBITDA 5624
▁receptor 5625
▁laptop 5626
▁proposition 5627
▁alongside 5628
▁smiling 5629
▁cried 5630
▁Brad 5631
▁invite 5632
▁honestly 5633
Ha 5634
▁mechanical 5635
▁caution 5636
▁Jane 5637
▁quarterly 5638
▁fade 5639
▁comic 5640
▁breed 5641
izer 5642
▁yards 5643
▁flesh 5644
▁Ana 5645
▁imaging 5646
▁uncomfortable 5647
▁jail 5648
▁beneficial 5649
▁considerable 5650
▁gradually 5651
▁blink 5652
▁damaged 5653
ison 5654
▁attempted 5655
▁reviewed 5656
▁testimony 5657
▁preparing 5658
▁ending 5659
▁spray 5660
▁password 5661
▁cave 5662
▁interrupt 5663
▁relaxed 5664
ola 5665
▁threshold 5666
▁underscore 5667
▁prospects 5668
▁utility 5669
▁balanced 5670
▁Ac 5671
▁eager 5672
plan 5673
▁surprising 5674
▁Wood 5675
ode 5676
▁worldwide 5677
▁involving 5678
▁seasonal 5679
▁blade 5680
▁precise 5681
▁Master 5682
there 5683
▁collaboration 5684
▁alien 5685
▁particles 5686
▁salad 5687
than 5688
▁assigned 5689
▁wrist 5690
▁vulnerable 5691
word 5692
▁emphasize 5693
▁packed 5694
▁tickets 5695
▁divided 5696
▁shout 5697
▁Jones 5698
▁Data 5699
▁undergo 5700
Still 5701
▁membrane 5702
▁publicly 5703
▁greet 5704
▁Android 5705
▁exploit 5706
▁experiencing 5707
▁backward 5708
▁seeds 5709
▁developers 5710
▁pregnancy 5711
▁glasses 5712
bol 5713
▁Lee 5714
Again 5715
▁qualified 5716
▁residential 5717
train 5718
▁golden 5719
▁lesion 5720
ami 5721
▁attended 5722
▁dramatic 5723
▁disclose 5724
▁subtle 5725
▁gathering 5726
▁thrown 5727
▁sew 5728
▁cellular 5729
▁Carl 5730
▁diabetes 5731
▁tries 5732
▁stake 5733
Though 5734
▁fake 5735
▁employ 5736
▁traveling 5737
▁screening 5738
▁horrible 5739
▁roughly 5740
MS 5741
▁imagination 5742
▁overwhelming 5743
▁GP 5744
▁remainder 5745
▁slot 5746
▁worship 5747
▁grasp 5748
▁Okay 5749
▁math 5750
Perhaps 5751
▁trait 5752
▁Book 5753
▁relations 5754
▁harvest 5755
▁dishes 5756
▁ser 5757
▁vac 5758
▁march 5759
run 5760
▁burned 5761
▁handling 5762
▁relates 5763
▁equivalent 5764
▁None 5765
▁frozen 5766
▁correction 5767
Whether 5768
▁Real 5769
▁opposition 5770
▁progressive 5771
▁efficiently 5772
non 5773
▁fist 5774
▁incentive 5775
▁narrative 5776
▁ninth 5777
▁applying 5778
▁instantly 5779
mbling 5780
▁terminal 5781
Only 5782
▁retirement 5783
▁distributed 5784
gate 5785
▁bare 5786
▁stiff 5787
oli 5788
▁observations 5789
▁discovery 5790
Da 5791
▁arrival 5792
▁dirty 5793
▁OS 5794
▁fence 5795
▁Angel 5796
▁Nick 5797
▁emphasis 5798
▁jurisdiction 5799
▁dominate 5800
Ro 5801
▁radiation 5802
▁gather 5803
▁NA 5804
▁fucking 5805
▁nonGAAP 5806
mato 5807
▁Ham 5808
▁nowhere 5809
▁Spain 5810
▁shifted 5811
▁woke 5812
▁pulse 5813
▁lighting 5814
▁associate 5815
cular 5816
▁slipped 5817
▁Anna 5818
ddy 5819
▁objectives 5820
zi 5821
▁frequent 5822
▁owe 5823
▁SS 5824
▁corporation 5825
▁suggestions 5826
▁assessed 5827
▁Sarah 5828
▁flame 5829
▁boots 5830
▁compelling 5831
▁athlete 5832
▁ads 5833
▁productive 5834
▁reply 5835
▁sessions 5836
active 5837
rink 5838
eller 5839
▁friendship 5840
▁lowest 5841
▁mouse 5842
▁Cy 5843
▁banking 5844
▁constitute 5845
▁coordinate 5846
▁realistic 5847
▁exclusive 5848
▁conviction 5849
▁forum 5850
▁thumb 5851
▁bin 5852
▁drill 5853
burg 5854
ience 5855
shot 5856
▁rural 5857
▁shortly 5858
▁patent 5859
▁Being 5860
▁neo 5861
▁Mal 5862
▁riding 5863
▁flower 5864
izz 5865
Given 5866
rack 5867
▁Fu 5868
▁cautious 5869
hole 5870
▁soup 5871
▁museum 5872
▁PS 5873
▁deploy 5874
▁PA 5875
▁notion 5876
iate 5877
▁tracking 5878
▁Long 5879
under 5880
▁skip 5881
▁ownership 5882
▁Jackson 5883
▁ham 5884
▁endless 5885
▁adverse 5886
▁shelter 5887
▁towel 5888
▁slave 5889
▁Care 5890
logy 5891
▁refuge 5892
▁shaking 5893
▁cabinet 5894
▁passionate 5895
Such 5896
▁declined 5897
▁possibilities 5898
plication 5899
▁extraordinary 5900
ground 5901
▁Donald 5902
▁aimed 5903
▁parameter 5904
▁honey 5905
▁fishing 5906
▁horror 5907
▁precisely 5908
▁Fri 5909
▁Spring 5910
▁insist 5911
▁invested 5912
▁System 5913
▁sustain 5914
▁Hy 5915
▁emotion 5916
▁Den 5917
▁inches 5918
▁Spirit 5919
▁Port 5920
▁Club 5921
▁defensive 5922
▁impose 5923
▁ur 5924
▁hitting 5925
▁concert 5926
▁cents 5927
▁wisdom 5928
▁operators 5929
▁Learn 5930
▁toilet 5931
▁MP 5932
▁assumption 5933
▁reminded 5934
▁sword 5935
gram 5936
▁statistics 5937
▁resort 5938
▁Obviously 5939
▁diagnostic 5940
▁struggled 5941
▁trusted 5942
▁captured 5943
▁subscription 5944
▁enemies 5945
▁boot 5946
▁swimming 5947
▁CR 5948
▁possession 5949
▁personnel 5950
▁Tell 5951
wl 5952
Through 5953
▁analog 5954
▁Army 5955
▁Wal 5956
▁accomplished 5957
▁Down 5958
▁virtually 5959
▁royal 5960
▁Association 5961
▁Cri 5962
▁compliance 5963
▁curl 5964
yle 5965
▁bun 5966
▁pants 5967
▁baseball 5968
▁desperate 5969
▁flick 5970
▁displayed 5971
▁laser 5972
▁activation 5973
▁Additionally 5974
▁professor 5975
▁southern 5976
▁infant 5977
▁smartphone 5978
▁Ryan 5979
esis 5980
▁suggesting 5981
ulating 5982
▁Road 5983
▁violation 5984
▁coal 5985
▁relate 5986
▁ghost 5987
gon 5988
▁propose 5989
▁cleared 5990
▁hiding 5991
▁Vo 5992
ographic 5993
▁sing 5994
▁dump 5995
▁branches 5996
▁exhaust 5997
▁overnight 5998
▁responded 5999
▁tick 6000
▁instinct 6001
Under 6002
▁vent 6003
▁ultra 6004
▁cord 6005
▁Angeles 6006
▁kissed 6007
▁submitted 6008
▁blast 6009
ifies 6010
▁Ya 6011
▁Korea 6012
▁Exp 6013
▁flip 6014
▁Social 6015
▁discussing 6016
▁thoroughly 6017
▁gang 6018
▁wireless 6019
scribe 6020
aught 6021
▁confusion 6022
▁signature 6023
omy 6024
▁singing 6025
spec 6026
▁sur 6027
▁tackle 6028
▁Islam 6029
▁bold 6030
▁generating 6031
▁Business 6032
▁logo 6033
▁Start 6034
▁Pay 6035
▁Someone 6036
cation 6037
▁Valley 6038
▁tunnel 6039
ific 6040
▁priest 6041
▁statute 6042
▁contractor 6043
▁Pacific 6044
▁silly 6045
▁quietly 6046
▁rug 6047
▁electricity 6048
▁freeze 6049
▁HIV 6050
▁marry 6051
▁crawl 6052
▁RA 6053
▁dare 6054
▁venue 6055
▁fed 6056
ution 6057
▁stare 6058
▁classical 6059
based 6060
▁span 6061
▁peaceful 6062
▁innocent 6063
▁Charlie 6064
▁remarkable 6065
▁hug 6066
▁hired 6067
▁substantially 6068
▁CC 6069
▁lover 6070
▁oxygen 6071
astic 6072
▁identification 6073
▁persist 6074
▁sequential 6075
▁companion 6076
▁sooner 6077
▁Olympic 6078
▁vector 6079
operative 6080
▁advocate 6081
▁promising 6082
▁Sub 6083
▁Qui 6084
Did 6085
▁sandwich 6086
▁morph 6087
▁phrase 6088
▁setup 6089
▁diagnosed 6090
▁buck 6091
▁complications 6092
▁abstract 6093
▁utilization 6094
▁fragment 6095
rian 6096
▁bubble 6097
▁Democratic 6098
▁offensive 6099
▁Mother 6100
▁derived 6101
uce 6102
▁precious 6103
▁painted 6104
Po 6105
▁Ireland 6106
▁separated 6107
▁Southern 6108
▁Nu 6109
Custom 6110
▁luxury 6111
▁significance 6112
▁optical 6113
▁USA 6114
▁chin 6115
▁CP 6116
▁acceptable 6117
▁industries 6118
En 6119
See 6120
▁implications 6121
▁attending 6122
ou 6123
▁matrix 6124
▁criticism 6125
▁tighten 6126
▁manual 6127
ibly 6128
organ 6129
▁identical 6130
▁strict 6131
▁HD 6132
▁fitness 6133
▁Chief 6134
▁dip 6135
lude 6136
▁loaded 6137
▁Indeed 6138
▁prohibit 6139
Qu 6140
▁ge 6141
▁convenience 6142
pin 6143
rap 6144
pat 6145
▁imagined 6146
▁Pakistan 6147
▁faint 6148
▁troops 6149
▁blank 6150
Looking 6151
holder 6152
▁weekly 6153
▁intelligent 6154
▁allocation 6155
▁manuscript 6156
▁Dave 6157
agin 6158
▁territory 6159
▁dash 6160
▁polar 6161
▁Ash 6162
▁Cur 6163
▁Coast 6164
▁unlock 6165
▁waist 6166
▁modification 6167
ception 6168
ura 6169
▁affirm 6170
▁prize 6171
▁confess 6172
▁CM 6173
▁executed 6174
▁membership 6175
ita 6176
▁requested 6177
eng 6178
▁Pol 6179
▁consciousness 6180
▁admission 6181
▁standpoint 6182
▁PD 6183
▁baking 6184
▁humor 6185
▁nicely 6186
▁harsh 6187
▁Watch 6188
▁Ten 6189
▁manufacture 6190
▁awkward 6191
▁reinforce 6192
▁fate 6193
▁Scotland 6194
Next 6195
▁institution 6196
▁abandoned 6197
▁maximize 6198
▁frankly 6199
▁achieving 6200
▁plasma 6201
▁throwing 6202
gling 6203
▁mutual 6204
▁Arch 6205
▁modified 6206
▁council 6207
▁musical 6208
Good 6209
▁assistant 6210
▁participating 6211
fire 6212
▁peri 6213
▁Royal 6214
▁county 6215
▁unclear 6216
▁Class 6217
▁Gen 6218
▁drama 6219
▁Mari 6220
▁talented 6221
▁buried 6222
▁Georgia 6223
▁recommendations 6224
▁disk 6225
▁Research 6226
▁distant 6227
▁mor 6228
▁Security 6229
▁Far 6230
▁mutation 6231
▁western 6232
▁Gold 6233
▁Land 6234
▁functionality 6235
▁lymph 6236
▁tale 6237
▁vaccine 6238
▁Word 6239
▁scream 6240
▁drum 6241
▁executing 6242
metric 6243
ko 6244
▁Nobody 6245
▁upside 6246
▁captain 6247
▁dismiss 6248
▁theater 6249
▁dim 6250
▁logical 6251
▁Click 6252
▁Institute 6253
▁organisation 6254
▁inherent 6255
▁brave 6256
▁slower 6257
▁grey 6258
▁dancing 6259
▁trim 6260
▁sensation 6261
▁electro 6262
▁dough 6263
iel 6264
▁reporter 6265
▁enzyme 6266
▁behalf 6267
▁Earl 6268
▁emerged 6269
amine 6270
▁Ven 6271
▁Meanwhile 6272
▁deployment 6273
ime 6274
▁cognitive 6275
▁quo 6276
▁simultaneously 6277
▁passes 6278
▁probability 6279
▁Israeli 6280
▁printed 6281
market 6282
▁Tony 6283
▁restrictions 6284
▁Phil 6285
▁appreciated 6286
▁brow 6287
▁suite 6288
▁Brian 6289
power 6290
▁involvement 6291
▁ven 6292
▁upload 6293
▁Andrew 6294
▁Dev 6295
▁workshop 6296
▁neat 6297
clo 6298
▁Several 6299
▁classroom 6300
▁abilities 6301
avi 6302
▁wider 6303
▁efficiencies 6304
▁chamber 6305
▁shorter 6306
▁suicide 6307
▁cabin 6308
▁SE 6309
count 6310
▁politicians 6311
▁deliberate 6312
▁Cro 6313
▁myth 6314
▁worn 6315
▁democracy 6316
▁Science 6317
▁snack 6318
▁Sky 6319
▁handful 6320
▁Human 6321
▁rhythm 6322
▁teen 6323
▁liability 6324
▁Give 6325
▁clarity 6326
▁dialogue 6327
▁gen 6328
▁purchasing 6329
▁outfit 6330
▁mold 6331
▁mining 6332
▁naked 6333
▁landing 6334
▁factory 6335
▁lamp 6336
▁govern 6337
▁mystery 6338
▁jar 6339
imp 6340
▁contemporary 6341
▁applies 6342
▁Show 6343
▁rap 6344
▁dramatically 6345
▁compassion 6346
cin 6347
▁disrupt 6348
▁Adv 6349
▁babies 6350
▁abnormal 6351
▁RNA 6352
▁boring 6353
▁temple 6354
▁appellant 6355
uk 6356
▁unde 6357
▁Police 6358
▁shareholder 6359
▁consists 6360
▁tar 6361
Build 6362
▁gorgeous 6363
▁tile 6364
▁sentiment 6365
▁praise 6366
▁lemon 6367
lim 6368
▁echo 6369
▁swim 6370
▁poison 6371
▁nano 6372
ulator 6373
phone 6374
▁mag 6375
▁Federal 6376
▁EC 6377
▁minimize 6378
▁grid 6379
▁blur 6380
▁hiring 6381
▁GAAP 6382
▁difficulties 6383
▁cure 6384
▁workout 6385
▁citizen 6386
Similar 6387
▁mortality 6388
▁assuming 6389
Sure 6390
Get 6391
▁bend 6392
▁yeah 6393
RC 6394
▁optimization 6395
▁Tech 6396
▁convey 6397
▁qualify 6398
▁rope 6399
nova 6400
▁electron 6401
▁artificial 6402
▁scent 6403
▁interval 6404
▁girlfriend 6405
▁Form 6406
born 6407
▁digest 6408
▁ES 6409
Take 6410
▁admire 6411
mod 6412
▁lib 6413
▁consequence 6414
▁elevated 6415
▁cru 6416
▁disciplined 6417
▁progression 6418
▁Walk 6419
▁rejected 6420
▁contrary 6421
▁Eric 6422
▁Trust 6423
▁Irish 6424
▁anxious 6425
▁ethnic 6426
▁cooked 6427
▁Count 6428
related 6429
▁generous 6430
▁equi 6431
▁psycho 6432
▁engaging 6433
▁arranged 6434
▁tenant 6435
▁rival 6436
▁barrel 6437
▁sneak 6438
roid 6439
▁psychological 6440
▁cousin 6441
▁flour 6442
▁discharge 6443
▁Louis 6444
▁norm 6445
▁comb 6446
key 6447
▁festival 6448
▁Food 6449
▁tub 6450
▁applicable 6451
▁injection 6452
▁historically 6453
▁receiver 6454
▁poem 6455
▁Things 6456
▁sustained 6457
▁accent 6458
▁rub 6459
▁loo 6460
ologies 6461
▁sir 6462
▁humanity 6463
▁magnitude 6464
▁restructuring 6465
▁northern 6466
▁polish 6467
▁CEO 6468
▁historic 6469
col 6470
▁needle 6471
▁SA 6472
▁exploring 6473
ington 6474
▁steep 6475
▁plug 6476
▁safely 6477
▁integrity 6478
leg 6479
▁washed 6480
through 6481
▁kicked 6482
▁evolve 6483
▁logistic 6484
Ja 6485
▁attacked 6486
▁enforcement 6487
ense 6488
▁incorporate 6489
▁Jon 6490
ji 6491
▁Syria 6492
▁Place 6493
▁killer 6494
▁Soviet 6495
ule 6496
▁tan 6497
▁unfortunately 6498
▁Celsius 6499
uel 6500
▁casino 6501
▁Carolina 6502
▁Little 6503
▁Santa 6504
▁separation 6505
▁Gal 6506
▁Minister 6507
Having 6508
▁voltage 6509
▁patience 6510
▁volatility 6511
space 6512
▁migration 6513
ban 6514
▁targeting 6515
▁Note 6516
▁systematic 6517
▁respective 6518
▁assay 6519
▁legend 6520
▁Northern 6521
berry 6522
worth 6523
▁Ve 6524
▁grin 6525
▁bent 6526
▁Fer 6527
▁repeatedly 6528
▁behave 6529
after 6530
▁orbit 6531
▁Fred 6532
▁cheaper 6533
▁horizon 6534
▁induced 6535
▁pillow 6536
▁Wo 6537
▁macro 6538
▁creep 6539
Car 6540
▁angel 6541
▁enabled 6542
▁jaw 6543
▁stopping 6544
▁whisk 6545
▁announce 6546
pparently 6547
▁organize 6548
▁contend 6549
▁advertise 6550
▁brew 6551
▁guilt 6552
▁merit 6553
▁entrepreneur 6554
▁screaming 6555
▁champion 6556
▁Victoria 6557
▁predicted 6558
▁neighbour 6559
▁viewed 6560
▁Gro 6561
▁celebration 6562
▁retreat 6563
▁threatened 6564
▁nest 6565
Vi 6566
▁bacteria 6567
▁knocked 6568
▁resolved 6569
▁inspect 6570
▁shocked 6571
▁Pen 6572
Mi 6573
▁racing 6574
▁influenced 6575
▁intake 6576
▁descend 6577
▁serum 6578
▁Tro 6579
ifier 6580
erate 6581
▁creativity 6582
▁argued 6583
▁instruction 6584
▁tru 6585
star 6586
▁pizza 6587
▁Francisco 6588
▁candle 6589
▁stamp 6590
▁Fire 6591
encies 6592
▁glove 6593
▁upward 6594
lusion 6595
▁constructed 6596
▁laboratory 6597
▁Fr 6598
Have 6599
▁elbow 6600
▁dental 6601
▁rack 6602
▁nuts 6603
▁blocked 6604
rum 6605
▁FA 6606
▁romantic 6607
▁tweet 6608
▁fancy 6609
▁forehead 6610
▁flew 6611
▁wished 6612
▁ambition 6613
▁effectiveness 6614
imate 6615
▁terrorist 6616
▁jet 6617
▁prominent 6618
gel 6619
▁compliment 6620
▁implant 6621
▁inflammatory 6622
mission 6623
▁Sand 6624
AT 6625
▁forgot 6626
▁rotation 6627
▁shield 6628
▁pond 6629
▁sleeve 6630
▁convince 6631
▁bored 6632
▁reception 6633
▁accused 6634
▁offend 6635
▁mut 6636
▁immigration 6637
▁commodity 6638
▁About 6639
bie 6640
▁transferred 6641
▁grill 6642
▁ruling 6643
▁magical 6644
▁deco 6645
▁Vietnam 6646
eno 6647
▁NFL 6648
▁elegant 6649
▁scored 6650
▁keen 6651
▁reliability 6652
▁centuries 6653
CO 6654
▁acceptance 6655
▁ST 6656
▁steer 6657
▁Edward 6658
▁existed 6659
▁treasure 6660
cover 6661
▁AP 6662
▁solely 6663
▁addresses 6664
▁shore 6665
▁Hollywood 6666
▁Hunt 6667
▁stunning 6668
▁ensuring 6669
▁basket 6670
▁chase 6671
▁Looking 6672
▁removing 6673
Sp 6674
▁frustration 6675
▁climbed 6676
▁hike 6677
▁jerk 6678
▁substitute 6679
▁limb 6680
▁controlling 6681
▁overhead 6682
▁sofa 6683
card 6684
▁wherever 6685
▁Michigan 6686
▁Cook 6687
▁brick 6688
▁failing 6689
▁Actually 6690
▁refund 6691
▁leaf 6692
▁Boy 6693
▁CB 6694
▁grandmother 6695
▁twentieth 6696
▁PR 6697
▁Pra 6698
will 6699
▁backlog 6700
▁rust 6701
▁Kevin 6702
▁hunting 6703
▁wallet 6704
▁temp 6705
▁mineral 6706
▁Mad 6707
vie 6708
▁seller 6709
▁spine 6710
▁squad 6711
▁feeding 6712
ctua 6713
▁trash 6714
▁spill 6715
▁discretion 6716
▁downtown 6717
most 6718
▁vice 6719
ati 6720
▁certificate 6721
▁partial 6722
▁manifest 6723
▁Women 6724
▁ugly 6725
▁gaming 6726
▁slept 6727
▁curtain 6728
▁Ray 6729
▁hybrid 6730
▁compile 6731
une 6732
▁identifying 6733
▁consecutive 6734
▁recognise 6735
▁veteran 6736
itude 6737
▁recovered 6738
▁Holy 6739
▁whip 6740
▁Sudden 6741
▁empower 6742
bon 6743
▁differential 6744
Ho 6745
▁layout 6746
▁ladies 6747
▁Ohio 6748
▁favour 6749
▁overview 6750
▁attraction 6751
▁flo 6752
▁lac 6753
▁drilling 6754
▁phenomenon 6755
▁Simon 6756
▁liquidity 6757
▁consistency 6758
▁scary 6759
▁basketball 6760
▁selective 6761
▁delayed 6762
▁Eli 6763
▁ox 6764
▁cruel 6765
▁boyfriend 6766
▁reject 6767
▁cloth 6768
▁bud 6769
▁deadline 6770
▁armed 6771
▁Age 6772
▁bounce 6773
▁FBI 6774
▁bundle 6775
▁ion 6776
Jo 6777
▁broker 6778
▁competing 6779
▁integrate 6780
Make 6781
▁overlap 6782
▁spite 6783
▁mud 6784
▁administrative 6785
▁homo 6786
▁damp 6787
▁analyst 6788
▁equipped 6789
▁sophisticated 6790
▁Mill 6791
▁Know 6792
hir 6793
arily 6794
▁protecting 6795
▁apologize 6796
▁pill 6797
▁inspire 6798
▁thereby 6799
Cl 6800
▁Greg 6801
▁NS 6802
▁dial 6803
wear 6804
▁separately 6805
▁excluded 6806
post 6807
▁prospect 6808
uth 6809
▁Main 6810
▁Guard 6811
▁strive 6812
▁advisor 6813
▁yoga 6814
▁meta 6815
▁restricted 6816
hol 6817
fuse 6818
▁vanish 6819
▁Society 6820
▁duck 6821
quest 6822
▁loyalty 6823
▁sigh 6824
▁profound 6825
▁teenager 6826
▁probe 6827
FC 6828
▁hop 6829
▁terror 6830
▁treating 6831
▁Disney 6832
▁API 6833
▁thoughtful 6834
▁sweep 6835
▁accommodate 6836
▁surge 6837
▁pest 6838
▁pension 6839
▁grinned 6840
▁voted 6841
Will 6842
▁makeup 6843
Clearly 6844
▁Dun 6845
▁modify 6846
▁Public 6847
▁forgive 6848
▁Force 6849
▁condo 6850
▁EM 6851
▁DM 6852
▁Rather 6853
▁Ci 6854
▁Ever 6855
▁consolidate 6856
▁hypothesis 6857
▁straightforward 6858
▁stumble 6859
▁analytics 6860
▁prospective 6861
▁col 6862
▁closest 6863
▁Kate 6864
▁infinite 6865
▁spatial 6866
▁Rome 6867
▁automatic 6868
▁chew 6869
▁plum 6870
▁rushed 6871
▁controller 6872
▁fraud 6873
▁SC 6874
▁landed 6875
▁temper 6876
▁mate 6877
Indeed 6878
▁fitting 6879
▁establishment 6880
▁lane 6881
EC 6882
▁lightly 6883
▁assembly 6884
▁elderly 6885
▁Tea 6886
angle 6887
▁vet 6888
▁Eastern 6889
▁substrate 6890
▁Best 6891
▁clever 6892
▁buzz 6893
▁complement 6894
▁inspection 6895
▁waved 6896
▁assured 6897
▁characterized 6898
▁premise 6899
▁Labour 6900
▁beans 6901
gno 6902
▁satellite 6903
▁firmly 6904
▁bleeding 6905
▁poverty 6906
▁strap 6907
▁Houston 6908
RP 6909
▁roast 6910
▁shine 6911
▁disclosure 6912
Further 6913
▁practically 6914
media 6915
▁Rick 6916
▁nap 6917
due 6918
▁dropping 6919
▁contradict 6920
▁crisp 6921
▁transparent 6922
▁swear 6923
▁Mountain 6924
▁investor 6925
▁vocal 6926
▁skirt 6927
▁calculate 6928
ike 6929
▁backup 6930
▁matching 6931
▁packaging 6932
each 6933
▁blessing 6934
▁affiliate 6935
▁viral 6936
▁polite 6937
▁Dec 6938
▁Hard 6939
▁supporters 6940
phi 6941
▁max 6942
▁highlighted 6943
▁envelope 6944
ologic 6945
▁baseline 6946
▁rib 6947
▁Program 6948
▁airline 6949
▁dread 6950
vation 6951
▁fortunate 6952
▁float 6953
▁photography 6954
▁fighter 6955
▁obstacle 6956
▁uncertain 6957
▁SM 6958
▁prescription 6959
▁Page 6960
▁Bell 6961
▁closure 6962
▁constraints 6963
ique 6964
▁negotiate 6965
▁mum 6966
▁spice 6967
▁Off 6968
name 6969
▁Jason 6970
▁Otherwise 6971
▁SD 6972
▁survived 6973
last 6974
▁lobby 6975
▁secured 6976
▁concentrate 6977
▁LA 6978
▁kidney 6979
▁Until 6980
▁inflammation 6981
▁sketch 6982
▁dressing 6983
▁shipment 6984
▁reaches 6985
▁suspected 6986
Without 6987
▁photographer 6988
▁cheat 6989
▁Colorado 6990
▁surf 6991
▁guaranteed 6992
▁regression 6993
▁boundaries 6994
▁copies 6995
▁SEC 6996
▁dried 6997
▁hormone 6998
▁challenged 6999
▁surgeon 7000
▁cotton 7001
▁stir 7002
▁Elizabeth 7003
▁Sho 7004
▁entitled 7005
▁Young 7006
▁thermal 7007
▁abroad 7008
▁outline 7009
gri 7010
▁intimate 7011
▁Nevertheless 7012
▁frowned 7013
▁presidential 7014
RT 7015
▁differentiation 7016
▁amongst 7017
▁trailer 7018
▁deter 7019
▁neglect 7020
▁Beach 7021
▁Constitution 7022
▁Ram 7023
▁uncle 7024
▁fantasy 7025
Overall 7026
▁Later 7027
▁Cross 7028
▁skilled 7029
type 7030
▁stretched 7031
▁bolt 7032
▁exhausted 7033
▁classification 7034
▁elect 7035
▁anchor 7036
▁folder 7037
▁betray 7038
▁printing 7039
▁voting 7040
▁Brand 7041
▁hence 7042
▁lecture 7043
▁compact 7044
▁basement 7045
▁Taylor 7046
▁bang 7047
▁Fair 7048
▁dense 7049
▁Parliament 7050
▁residence 7051
▁enhancement 7052
kind 7053
▁Bush 7054
▁searched 7055
▁freak 7056
▁independence 7057
▁Korean 7058
▁elite 7059
▁mist 7060
▁Cap 7061
life 7062
▁retention 7063
▁distress 7064
▁navigate 7065
▁align 7066
▁dumb 7067
▁transplant 7068
▁grim 7069
▁edition 7070
▁motivated 7071
▁flush 7072
▁eyebrow 7073
▁Special 7074
▁mechanic 7075
uter 7076
▁documentation 7077
▁underneath 7078
▁compute 7079
Comp 7080
▁await 7081
▁striking 7082
▁bucket 7083
▁featured 7084
ius 7085
▁cyto 7086
▁hallway 7087
▁globe 7088
▁Director 7089
▁violate 7090
▁punish 7091
▁fortune 7092
▁constitutional 7093
▁contributing 7094
▁headwind 7095
▁quantity 7096
▁minus 7097
▁tightly 7098
▁Top 7099
▁poke 7100
▁nightmare 7101
▁varied 7102
▁destruction 7103
▁efficacy 7104
▁Given 7105
▁Project 7106
▁Joseph 7107
▁nineteenth 7108
▁theoretical 7109
▁theories 7110
▁chunk 7111
▁Auto 7112
▁Sir 7113
▁Six 7114
cake 7115
▁bro 7116
▁legitimate 7117
▁governor 7118
▁vague 7119
▁fracture 7120
▁Ron 7121
▁Cam 7122
▁appointed 7123
▁addict 7124
▁protective 7125
▁insult 7126
hou 7127
▁Justice 7128
▁massage 7129
▁beef 7130
Based 7131
▁Kim 7132
▁Egypt 7133
▁entity 7134
▁embedded 7135
▁syndrome 7136
▁Julia 7137
▁grind 7138
▁YouTube 7139
▁warmth 7140
▁nursing 7141
ask 7142
▁independently 7143
▁laughter 7144
▁ER 7145
▁MA 7146
▁delicate 7147
▁Gene 7148
▁ankle 7149
▁specialty 7150
▁withdraw 7151
▁submission 7152
▁adhere 7153
▁hub 7154
▁gaining 7155
▁mattress 7156
morph 7157
lib 7158
▁validate 7159
▁Jordan 7160
▁penalty 7161
▁Run 7162
▁operated 7163
▁physics 7164
Invest 7165
class 7166
▁coaches 7167
▁sip 7168
▁Hospital 7169
▁depict 7170
shire 7171
▁static 7172
link 7173
▁UN 7174
▁indoor 7175
chemical 7176
▁accompanied 7177
▁activist 7178
mail 7179
▁crap 7180
▁pursuing 7181
miss 7182
▁essence 7183
▁genre 7184
▁exploration 7185
Moving 7186
▁unnecessary 7187
▁Ob 7188
▁highway 7189
▁reconciliation 7190
▁NP 7191
▁Management 7192
▁Foundation 7193
grade 7194
▁indicating 7195
▁representing 7196
craft 7197
▁grief 7198
▁disruption 7199
▁Further 7200
▁soldier 7201
asse 7202
▁linger 7203
▁dominant 7204
▁funeral 7205
▁Design 7206
▁abortion 7207
▁GM 7208
▁accordance 7209
▁placement 7210
▁potatoes 7211
▁finishing 7212
▁excellence 7213
ogenesis 7214
▁supportive 7215
▁eligible 7216
Keep 7217
▁rifle 7218
▁accurately 7219
▁spotted 7220
▁floating 7221
▁Test 7222
Consequently 7223
▁ecosystem 7224
▁surprisingly 7225
▁PE 7226
▁punishment 7227
▁Fall 7228
▁Mat 7229
▁convention 7230
▁diploma 7231
▁demographic 7232
▁renewal 7233
▁diamond 7234
▁shy 7235
▁SEO 7236
present 7237
▁CF 7238
▁implementing 7239
▁brutal 7240
▁pra 7241
▁III 7242
▁publisher 7243
▁jam 7244
▁cohort 7245
▁dataset 7246
▁seemingly 7247
▁lender 7248
▁vein 7249
▁cough 7250
▁conform 7251
▁fever 7252
▁BC 7253
▁encountered 7254
▁Lib 7255
Look 7256
▁fascinating 7257
▁handled 7258
▁assure 7259
ander 7260
agon 7261
▁keyboard 7262
▁diminish 7263
▁evaluating 7264
▁Mexican 7265
▁torture 7266
▁curse 7267
bound 7268
▁declared 7269
▁comparing 7270
▁Team 7271
▁headache 7272
▁olive 7273
▁regarded 7274
▁brace 7275
▁Uni 7276
▁MI 7277
▁civilian 7278
▁cease 7279
▁connecting 7280
▁gauge 7281
▁excessive 7282
▁infected 7283
▁determining 7284
▁peel 7285
▁stall 7286
▁meditation 7287
▁Medical 7288
▁vacuum 7289
▁incidence 7290
▁LED 7291
▁tenth 7292
▁Ali 7293
▁distinction 7294
▁Sound 7295
▁cruise 7296
▁insisted 7297
▁lately 7298
▁rubber 7299
▁rh 7300
▁RF 7301
▁twisted 7302
▁garlic 7303
▁preach 7304
▁Palestinian 7305
ogni 7306
ada 7307
▁bloody 7308
▁Ze 7309
▁exclude 7310
greg 7311
▁Harris 7312
▁lawn 7313
▁upstairs 7314
▁mentor 7315
Recently 7316
▁inevitable 7317
▁prevalence 7318
▁wishes 7319
▁Van 7320
▁stabilize 7321
▁officially 7322
▁MC 7323
▁loyal 7324
▁antibiotic 7325
guard 7326
▁stolen 7327
▁nutrient 7328
▁velocity 7329
▁Hence 7330
▁Arizona 7331
▁hedge 7332
▁Fox 7333
▁Especially 7334
▁milestone 7335
▁Turkey 7336
▁urgent 7337
▁blond 7338
▁Saint 7339
▁elaborate 7340
▁washing 7341
▁awarded 7342
▁continuously 7343
▁commentary 7344
▁boundary 7345
▁Sil 7346
▁Carol 7347
▁servant 7348
▁Press 7349
▁precision 7350
from 7351
face 7352
▁bearing 7353
▁characteristic 7354
▁stitch 7355
▁placing 7356
▁rage 7357
▁swell 7358
▁pub 7359
▁pole 7360
▁Consider 7361
▁deficit 7362
App 7363
Regardless 7364
▁console 7365
▁merchant 7366
▁perceived 7367
▁variant 7368
▁Alice 7369
▁retro 7370
▁Officer 7371
▁Roger 7372
▁requiring 7373
▁strongest 7374
▁reflecting 7375
▁measuring 7376
spiration 7377
Does 7378
▁clam 7379
▁frustrated 7380
▁Mid 7381
▁Hope 7382
▁enforce 7383
▁Town 7384
▁spoil 7385
▁editing 7386
▁adjacent 7387
▁meantime 7388
▁Bitcoin 7389
▁gi 7390
▁purple 7391
▁thankful 7392
▁Luke 7393
▁jeans 7394
▁costume 7395
▁Bridge 7396
▁blew 7397
▁Prime 7398
▁relating 7399
therapy 7400
▁insect 7401
▁tilt 7402
▁reasonably 7403
▁cardiac 7404
▁attempting 7405
▁inclusion 7406
▁chaos 7407
▁accessories 7408
▁expenditure 7409
▁trapped 7410
▁verify 7411
▁poured 7412
▁investigator 7413
▁Key 7414
▁belly 7415
▁occurring 7416
▁Third 7417
▁reset 7418
▁dull 7419
▁disgust 7420
▁focuses 7421
pay 7422
▁Jacob 7423
▁Islamic 7424
▁summarize 7425
▁soap 7426
▁regulator 7427
▁toast 7428
▁induce 7429
▁delight 7430
▁promotional 7431
▁unfold 7432
▁bay 7433
▁generic 7434
weight 7435
▁transmit 7436
New 7437
▁aligned 7438
▁copyright 7439
▁profession 7440
▁Ask 7441
▁ritual 7442
▁distort 7443
▁disappoint 7444
▁incorrect 7445
▁poorly 7446
▁Seattle 7447
▁thorough 7448
▁Camp 7449
▁Low 7450
▁Bla 7451
▁warned 7452
▁eaten 7453
▁tract 7454
▁Head 7455
▁dragged 7456
▁unfair 7457
▁converted 7458
▁condemn 7459
▁halt 7460
▁grocery 7461
▁developer 7462
▁explosion 7463
piece 7464
▁accordingly 7465
▁bush 7466
▁Product 7467
▁shelf 7468
▁desirable 7469
▁gel 7470
▁Within 7471
▁sec 7472
▁boom 7473
▁bind 7474
▁Stephen 7475
▁absent 7476
▁subsequently 7477
▁ranking 7478
▁readily 7479
▁Jersey 7480
Use 7481
▁Kong 7482
▁invitation 7483
▁Bru 7484
▁promoting 7485
▁Wild 7486
▁thigh 7487
▁HR 7488
▁advised 7489
▁amendment 7490
▁attracted 7491
▁considerably 7492
▁Qua 7493
▁specified 7494
▁endorse 7495
▁hyp 7496
▁zip 7497
▁numerical 7498
Everyone 7499
▁explode 7500
▁scholar 7501
▁prevention 7502
▁mock 7503
▁divide 7504
▁gig 7505
▁outrage 7506
▁orientation 7507
▁SP 7508
▁Neither 7509
▁quant 7510
▁addiction 7511
▁Pur 7512
▁Always 7513
because 7514
▁doorway 7515
▁collar 7516
▁duties 7517
▁sym 7518
▁clutch 7519
▁Garden 7520
▁consultant 7521
▁enthusiasm 7522
▁Wilson 7523
Besides 7524
▁rape 7525
▁ethic 7526
▁End 7527
▁objection 7528
▁packet 7529
▁minority 7530
▁Gil 7531
▁reservation 7532
▁Either 7533
Current 7534
▁alignment 7535
▁Zealand 7536
▁completing 7537
itz 7538
ggy 7539
▁desktop 7540
omer 7541
▁PP 7542
▁accelerated 7543
▁width 7544
store 7545
version 7546
▁attain 7547
▁neurons 7548
▁lump 7549
La 7550
▁chop 7551
▁Ger 7552
▁annoying 7553
▁Toronto 7554
Turning 7555
▁silk 7556
▁query 7557
▁lid 7558
▁retired 7559
▁cater 7560
▁Energy 7561
▁phenomena 7562
fish 7563
fur 7564
▁metric 7565
▁rebuild 7566
▁altogether 7567
▁permitted 7568
▁discrimination 7569
▁preliminary 7570
▁institutional 7571
▁trunk 7572
▁suggestion 7573
▁whilst 7574
▁ok 7575
▁hurry 7576
▁err 7577
▁Exchange 7578
▁rebel 7579
▁Personal 7580
▁ortho 7581
▁poetry 7582
▁particle 7583
▁Kingdom 7584
▁Instagram 7585
▁ceremony 7586
▁Stone 7587
▁confirmation 7588
▁marijuana 7589
▁miracle 7590
▁pine 7591
▁startup 7592
▁abandon 7593
▁testified 7594
Meanwhile 7595
▁contributor 7596
▁shoe 7597
▁occupation 7598
▁euro 7599
▁isolation 7600
▁stimulate 7601
▁useless 7602
fold 7603
depend 7604
▁ego 7605
▁composed 7606
▁CapEx 7607
stein 7608
▁porch 7609
▁Probably 7610
▁corridor 7611
▁moist 7612
▁fatal 7613
▁dawn 7614
▁Doctor 7615
▁fierce 7616
▁Brexit 7617
▁prince 7618
▁classified 7619
▁Republic 7620
▁correlated 7621
▁hood 7622
▁Plaintiff 7623
▁chrom 7624
▁Pennsylvania 7625
▁Maria 7626
▁distributor 7627
▁continent 7628
▁Talk 7629
▁folded 7630
▁Hillary 7631
▁entertain 7632
▁Jay 7633
▁MRI 7634
▁restrain 7635
know 7636
Would 7637
▁climbing 7638
▁dual 7639
▁Mel 7640
mobil 7641
▁accommodation 7642
▁retrieve 7643
▁Albert 7644
▁piano 7645
▁finest 7646
▁idiot 7647
▁participated 7648
▁Point 7649
▁jewelry 7650
▁cult 7651
▁HC 7652
▁copper 7653
▁consultation 7654
▁newsletter 7655
▁witnesses 7656
▁sampling 7657
▁immense 7658
▁slope 7659
▁Secretary 7660
▁mainstream 7661
▁tang 7662
▁accompany 7663
▁cage 7664
▁widespread 7665
▁altered 7666
Ba 7667
▁soften 7668
▁clarify 7669
▁racial 7670
▁tray 7671
script 7672
this 7673
▁shrink 7674
▁gasp 7675
▁allocate 7676
▁precede 7677
▁carries 7678
▁evolved 7679
▁HP 7680
▁Pass 7681
▁drawer 7682
▁workplace 7683
Add 7684
▁cushion 7685
▁Helen 7686
▁traction 7687
▁wholesale 7688
▁transformed 7689
▁cooperation 7690
▁evolving 7691
▁transcript 7692
▁Financial 7693
▁reluctant 7694
▁Unlike 7695
▁Vegas 7696
▁Control 7697
▁DO 7698
▁Hamilton 7699
▁followers 7700
Was 7701
▁Wil 7702
▁responsive 7703
▁Jimmy 7704
▁glimpse 7705
▁technological 7706
▁switched 7707
▁hammer 7708
▁Education 7709
Yeah 7710
▁Evan 7711
▁buffer 7712
other 7713
▁Ban 7714
▁wounded 7715
▁blessed 7716
▁mall 7717
▁Saudi 7718
je 7719
▁accomplishment 7720
▁Much 7721
▁Student 7722
▁severity 7723
▁sheep 7724
▁Tour 7725
▁Live 7726
▁batch 7727
▁processor 7728
▁Media 7729
▁Kelly 7730
▁jealous 7731
▁outlined 7732
▁valley 7733
▁breach 7734
▁finite 7735
▁worthy 7736
▁geographic 7737
▁lawsuit 7738
▁dedication 7739
lessness 7740
▁swap 7741
▁enrich 7742
Beyond 7743
bury 7744
▁Rachel 7745
▁implied 7746
▁decay 7747
ude 7748
▁confusing 7749
▁suspicious 7750
▁merger 7751
stock 7752
▁continually 7753
▁dessert 7754
cellular 7755
▁penetration 7756
▁reside 7757
▁Anti 7758
▁crown 7759
▁Hong 7760
lift 7761
▁grandfather 7762
Right 7763
▁nearest 7764
▁enabling 7765
▁fibro 7766
▁regulated 7767
▁consolidation 7768
▁churches 7769
▁Atlantic 7770
▁mandate 7771
▁Defendant 7772
▁beast 7773
▁Academy 7774
▁Eventually 7775
▁strand 7776
▁tribe 7777
▁Music 7778
▁province 7779
▁hesitate 7780
▁Civil 7781
▁Member 7782
▁haunt 7783
course 7784
▁breeze 7785
▁fond 7786
▁endure 7787
clock 7788
▁cab 7789
▁abundance 7790
▁foster 7791
▁slim 7792
▁Iowa 7793
▁Photo 7794
▁mitigate 7795
▁scoring 7796
▁distribute 7797
▁Lady 7798
▁demonstration 7799
▁mysterious 7800
▁scatter 7801
▁spike 7802
▁gentlemen 7803
▁gallery 7804
▁integral 7805
▁generator 7806
▁exclusively 7807
▁utilized 7808
▁lending 7809
ffer 7810
▁Billy 7811
▁threatening 7812
▁aesthetic 7813
▁Afghanistan 7814
▁regulate 7815
▁Jake 7816
▁glare 7817
▁poet 7818
▁spouse 7819
▁explicitly 7820
▁swallowed 7821
▁disappointment 7822
▁spectacular 7823
▁Manchester 7824
▁brake 7825
▁Clark 7826
▁lonely 7827
▁spoon 7828
▁Sorry 7829
▁snake 7830
▁Five 7831
▁DS 7832
▁Really 7833
Everything 7834
oscopic 7835
▁hazard 7836
▁impairment 7837
▁concentrated 7838
▁countless 7839
▁consensus 7840
▁Yo 7841
▁gravity 7842
sort 7843
▁capitalize 7844
▁Xray 7845
▁surrender 7846
▁polymer 7847
▁wipe 7848
▁fifteenth 7849
▁firing 7850
▁Illinois 7851
▁surveillance 7852
▁oldest 7853
▁insane 7854
▁recipient 7855
▁occurrence 7856
▁purely 7857
▁drank 7858
▁weaker 7859
▁skeptic 7860
▁Children 7861
▁departure 7862
▁acceleration 7863
▁MD 7864
▁broadly 7865
source 7866
▁Network 7867
▁appliance 7868
▁sanction 7869
▁iPad 7870
▁Gulf 7871
▁metabolism 7872
Specifically 7873
genic 7874
▁overseas 7875
▁contaminat 7876
▁pH 7877
▁haul 7878
▁podcast 7879
▁occupied 7880
▁fridge 7881
▁Global 7882
▁invisible 7883
▁strictly 7884
▁glue 7885
▁transparency 7886
▁Except 7887
▁charity 7888
▁Emma 7889
▁underground 7890
▁ML 7891
▁Family 7892
▁devoted 7893
oxic 7894
wall 7895
▁Davis 7896
▁dys 7897
▁allegations 7898
▁rode 7899
▁catalog 7900
▁snapped 7901
▁dismissed 7902
▁thrive 7903
▁survivor 7904
▁Dark 7905
▁popularity 7906
responsibilities 7907
▁Nazi 7908
▁depressed 7909
▁receipt 7910
▁lag 7911
▁Code 7912
▁beaten 7913
▁mentally 7914
▁frustrating 7915
▁shiver 7916
▁intact 7917
▁fatigue 7918
▁Anne 7919
▁limitation 7920
▁Due 7921
▁valuation 7922
▁ethical 7923
▁renal 7924
▁disadvantage 7925
▁automation 7926
▁entertaining 7927
▁BP 7928
▁cleaner 7929
▁Information 7930
▁dysfunction 7931
▁elevator 7932
▁knit 7933
▁appreciation 7934
▁dragon 7935
▁specify 7936
▁delighted 7937
▁knot 7938
▁heels 7939
Within 7940
▁Michel 7941
▁deciding 7942
▁deployed 7943
▁junk 7944
▁insulin 7945
symmetric 7946
▁qualities 7947
▁thrill 7948
▁likelihood 7949
▁screamed 7950
▁Hand 7951
▁pursuit 7952
▁swallow 7953
▁fluctuation 7954
▁junior 7955
▁quantitative 7956
▁verse 7957
▁purse 7958
dynamic 7959
▁shouted 7960
▁Sen 7961
▁glory 7962
▁incorporated 7963
▁attachment 7964
▁PT 7965
▁CN 7966
▁attach 7967
▁tossed 7968
▁Oregon 7969
Patients 7970
▁warehouse 7971
▁Miller 7972
▁Store 7973
Following 7974
▁glucose 7975
▁Dutch 7976
▁salary 7977
▁controversial 7978
▁pixel 7979
group 7980
▁safer 7981
▁halfway 7982
▁sunlight 7983
▁rubbed 7984
▁Amendment 7985
▁suburb 7986
▁distraction 7987
Certain 7988
▁championship 7989
▁Among 7990
Nothing 7991
▁cookie 7992
▁entities 7993
▁compress 7994
▁referring 7995
▁bankruptcy 7996
▁tariff 7997
▁debut 7998
▁certified 7999
▁divine 8000
mount 8001
▁shallow 8002
▁happily 8003
▁automotive 8004
▁Award 8005
▁accumulate 8006
▁suspicion 8007
▁suspension 8008
▁portrait 8009
▁justify 8010
plex 8011
burn 8012
▁faculty 8013
▁singer 8014
▁Hawaii 8015
▁Singapore 8016
▁horizontal 8017
Whatever 8018
▁dentist 8019
▁Report 8020
▁Marine 8021
▁hopeful 8022
▁aggregate 8023
▁scroll 8024
▁Lucy 8025
▁differentiated 8026
▁horn 8027
▁crude 8028
▁occasional 8029
▁wiped 8030
▁Overall 8031
▁coding 8032
product 8033
▁shortage 8034
▁straw 8035
▁portray 8036
Remember 8037
▁tendency 8038
▁securities 8039
▁Hotel 8040
▁queen 8041
▁variability 8042
▁implies 8043
▁metabolic 8044
▁uncover 8045
▁statue 8046
▁invasion 8047
utter 8048
▁smash 8049
▁magnet 8050
▁thrilled 8051
▁Miami 8052
▁quest 8053
▁bargain 8054
▁durable 8055
▁hesitated 8056
▁NY 8057
▁computing 8058
▁prevail 8059
▁compensate 8060
▁canvas 8061
▁therapist 8062
▁tennis 8063
▁realizing 8064
▁educated 8065
▁facial 8066
▁tense 8067
▁vest 8068
▁Made 8069
▁dwell 8070
think 8071
▁theatre 8072
▁Philip 8073
Between 8074
▁tolerate 8075
▁amazed 8076
▁valve 8077
▁Want 8078
▁devil 8079
▁bloom 8080
▁certification 8081
▁taxi 8082
▁farther 8083
▁tattoo 8084
▁revised 8085
▁Lewis 8086
▁enjoyable 8087
▁Unless 8088
▁Matthew 8089
▁realization 8090
▁locate 8091
▁Medicare 8092
▁unconscious 8093
▁motive 8094
▁Based 8095
▁thermo 8096
▁Usually 8097
▁Pack 8098
▁Que 8099
▁charging 8100
Nevertheless 8101
▁introducing 8102
▁Susan 8103
▁genome 8104
▁Feel 8105
▁suspended 8106
▁synthesis 8107
▁realised 8108
▁Def 8109
▁welfare 8110
▁proactive 8111
▁Sydney 8112
▁eleventh 8113
▁desperately 8114
▁mobility 8115
▁Bear 8116
Lucki 8117
▁relieved 8118
▁beverage 8119
▁interference 8120
▁Space 8121
▁harmful 8122
▁Museum 8123
▁handsome 8124
▁aggressively 8125
▁virtue 8126
▁thrust 8127
▁flee 8128
▁printer 8129
▁Empire 8130
▁fabulous 8131
▁enhancing 8132
▁scoop 8133
▁Journal 8134
▁eighteenth 8135
▁Christianity 8136
▁compression 8137
▁harbor 8138
▁activated 8139
▁paragraph 8140
▁universities 8141
▁drown 8142
▁TB 8143
▁Vol 8144
▁furnish 8145
▁prudent 8146
▁Fund 8147
▁defence 8148
▁Navy 8149
▁predominant 8150
▁validation 8151
▁embarrassed 8152
▁lick 8153
▁replicate 8154
▁drip 8155
▁bark 8156
▁Para 8157
▁cocktail 8158
▁frightened 8159
▁trajectory 8160
▁Diego 8161
structure 8162
▁Dallas 8163
▁specialized 8164
▁antibodies 8165
▁Bull 8166
▁curiosity 8167
▁faithful 8168
▁flavour 8169
▁electrode 8170
▁disability 8171
▁niche 8172
▁neural 8173
▁Chelsea 8174
Plus 8175
▁believing 8176
▁aroma 8177
▁swift 8178
▁whistle 8179
▁Yu 8180
▁persistent 8181
Anyway 8182
▁Avenue 8183
▁Greece 8184
▁scattered 8185
▁Engine 8186
▁tricky 8187
▁tutorial 8188
▁Often 8189
around 8190
▁Easter 8191
▁swung 8192
▁Sanders 8193
▁Week 8194
scale 8195
▁humble 8196
▁RE 8197
▁Natural 8198
▁Moon 8199
▁Order 8200
▁eternal 8201
▁corruption 8202
Several 8203
▁shipped 8204
▁eighties 8205
▁sibling 8206
bone 8207
▁CV 8208
▁laundry 8209
ession 8210
▁Lincoln 8211
▁appetite 8212
▁libraries 8213
▁Excel 8214
▁Emily 8215
▁harass 8216
▁Author 8217
▁Bowl 8218
▁Farm 8219
▁skull 8220
▁conceal 8221
▁recommendation 8222
▁arrange 8223
Ultimately 8224
▁chemistry 8225
▁leveraging 8226
▁fasci 8227
▁recurring 8228
▁geo 8229
▁interactive 8230
▁Captain 8231
▁dumpster 8232
Obviously 8233
▁dislike 8234
▁revision 8235
▁wealthy 8236
▁Steven 8237
▁terrific 8238
▁Following 8239
▁stride 8240
▁realise 8241
▁specimen 8242
▁Everybody 8243
▁Investor 8244
▁aunt 8245
▁Ukraine 8246
▁overwhelmed 8247
▁Thr 8248
▁manually 8249
▁Square 8250
▁Beth 8251
▁archive 8252
▁swept 8253
▁goodbye 8254
▁peripheral 8255
making 8256
▁Night 8257
▁Community 8258
▁Atlanta 8259
▁soccer 8260
▁replacing 8261
▁stakeholders 8262
▁remodel 8263
▁technician 8264
▁passive 8265
▁Beck 8266
Part 8267
▁Brother 8268
▁Capital 8269
▁persuade 8270
plain 8271
▁Full 8272
▁pho 8273
▁garbage 8274
▁Common 8275
▁describing 8276
▁Opera 8277
▁mindful 8278
▁anonymous 8279
▁instructor 8280
▁Disc 8281
▁tolerance 8282
▁Grace 8283
▁absurd 8284
▁splash 8285
▁Stay 8286
▁pickup 8287
▁lazy 8288
▁chef 8289
▁Scottish 8290
▁viable 8291
▁MB 8292
▁stove 8293
▁BBC 8294
▁GB 8295
▁Java 8296
▁hurricane 8297
▁Almost 8298
▁stimulation 8299
▁absorption 8300
▁coupling 8301
▁Columbia 8302
▁wreck 8303
▁Amy 8304
▁MT 8305
cott 8306
ectomy 8307
nstru 8308
▁scare 8309
▁font 8310
▁Premier 8311
▁Line 8312
▁midnight 8313
▁LC 8314
▁athletic 8315
▁worries 8316
▁romance 8317
▁healthier 8318
▁utilizing 8319
▁resistant 8320
▁Sign 8321
▁necessity 8322
▁spontaneous 8323
▁folk 8324
▁nineties 8325
▁Division 8326
▁moisture 8327
▁batter 8328
▁assign 8329
▁pencil 8330
▁resemble 8331
▁disposal 8332
▁Cru 8333
▁Securities 8334
▁Conference 8335
▁Ol 8336
posed 8337
▁drone 8338
▁commence 8339
▁affection 8340
▁Kansas 8341
▁Morgan 8342
▁Minnesota 8343
▁Summer 8344
▁varies 8345
▁invasive 8346
hn 8347
▁lever 8348
▁racist 8349
▁footage 8350
▁symptom 8351
interest 8352
▁VA 8353
▁heritage 8354
▁regimen 8355
▁vintage 8356
▁arguing 8357
▁automated 8358
▁regain 8359
John 8360
▁coupon 8361
▁obey 8362
▁diameter 8363
▁resident 8364
▁Small 8365
▁Labor 8366
▁Jan 8367
▁Cameron 8368
▁methodology 8369
viv 8370
▁initiated 8371
▁updating 8372
▁thickness 8373
▁onset 8374
▁solving 8375
▁batteries 8376
▁tomatoes 8377
▁quilt 8378
▁beloved 8379
▁rocket 8380
▁midst 8381
▁synergies 8382
▁circum 8383
▁Cuba 8384
▁biology 8385
▁illusion 8386
▁rigid 8387
▁genuinely 8388
▁eastern 8389
▁reproduce 8390
▁stroll 8391
▁foam 8392
▁secretary 8393
Very 8394
▁vibrant 8395
▁transit 8396
▁democratic 8397
▁Way 8398
▁vampire 8399
▁Howard 8400
▁depart 8401
▁detective 8402
▁temporal 8403
plasm 8404
▁kingdom 8405
▁antibody 8406
▁utter 8407
▁merchandise 8408
▁prosecutor 8409
▁serial 8410
▁genius 8411
▁balloon 8412
▁terrified 8413
▁masses 8414
▁entries 8415
▁discontinu 8416
▁Philadelphia 8417
▁inhabit 8418
▁warrior 8419
▁disabled 8420
stead 8421
▁easiest 8422
▁fog 8423
▁proliferation 8424
▁sacred 8425
▁ministry 8426
▁cope 8427
Due 8428
▁underway 8429
▁Charlotte 8430
▁encrypt 8431
▁coefficient 8432
▁simplicity 8433
▁personalized 8434
▁Multi 8435
▁backyard 8436
▁helmet 8437
▁enthusiastic 8438
▁premier 8439
▁nasty 8440
▁differentiate 8441
▁medal 8442
▁Laura 8443
▁kilo 8444
▁tragedy 8445
▁coconut 8446
▁Section 8447
▁dug 8448
▁Arthur 8449
▁apparatus 8450
Cha 8451
▁supplied 8452
▁diagram 8453
▁selfish 8454
▁custody 8455
▁illustration 8456
▁homework 8457
▁UV 8458
▁hunger 8459
▁Major 8460
▁litigation 8461
▁compatible 8462
trans 8463
▁pathogen 8464
▁Fun 8465
▁artistic 8466
▁foolish 8467
▁seventies 8468
▁quarterback 8469
▁sniff 8470
▁optional 8471
▁stepping 8472
▁simplify 8473
▁quantities 8474
▁pivot 8475
▁animation 8476
Nonetheless 8477
▁seventeenth 8478
▁municipal 8479
▁inspiring 8480
▁Fortunately 8481
▁backpack 8482
▁emit 8483
▁intuitive 8484
▁RP 8485
▁transcription 8486
▁Centre 8487
▁marginal 8488
▁mathematical 8489
▁referral 8490
▁hover 8491
▁analytical 8492
▁hatred 8493
▁tobacco 8494
▁deemed 8495
▁unhappy 8496
ku 8497
▁intermediate 8498
Rather 8499
▁armor 8500
US 8501
▁discard 8502
factor 8503
▁exhibition 8504
▁flux 8505
▁dictate 8506
▁marine 8507
▁denial 8508
▁FDA 8509
▁sack 8510
▁notebook 8511
▁refrigerator 8512
▁utterly 8513
▁happier 8514
Out 8515
▁Help 8516
▁bass 8517
▁corrupt 8518
dress 8519
▁scrub 8520
▁unemployment 8521
▁Sports 8522
▁URL 8523
▁downstairs 8524
▁underwent 8525
▁triumph 8526
▁cricket 8527
▁rebound 8528
▁prejudice 8529
▁cyber 8530
▁connectivity 8531
▁bail 8532
▁Blood 8533
▁Room 8534
▁investigating 8535
Unlike 8536
Book 8537
▁Imagine 8538
▁plugin 8539
▁Euro 8540
Great 8541
▁Kris 8542
▁scholarship 8543
▁castle 8544
▁Ocean 8545
▁Leave 8546
▁respiratory 8547
▁UC 8548
▁postoperative 8549
▁alternate 8550
▁Buck 8551
▁hurried 8552
▁vascular 8553
▁ecommerce 8554
▁cliff 8555
▁artwork 8556
Important 8557
▁thirtieth 8558
▁furious 8559
▁twelfth 8560
▁pending 8561
▁sidewalk 8562
▁intensive 8563
▁creator 8564
▁seamless 8565
▁banned 8566
▁groan 8567
▁verbal 8568
▁explicit 8569
▁doctrine 8570
▁heroes 8571
▁travelling 8572
▁Julie 8573
▁porn 8574
▁ambitious 8575
▁therapies 8576
▁duplicate 8577
▁mindset 8578
▁superb 8579
▁predictable 8580
Hence 8581
▁ladder 8582
case 8583
when 8584
▁terribly 8585
▁breakdown 8586
▁thunder 8587
Later 8588
▁stance 8589
▁Tele 8590
▁Patrick 8591
▁despair 8592
▁analyse 8593
▁helicopter 8594
▁administrator 8595
▁cottage 8596
▁DVD 8597
▁vow 8598
▁Nik 8599
▁witch 8600
▁convincing 8601
▁anniversary 8602
▁queue 8603
▁Gary 8604
▁merge 8605
▁feather 8606
▁raid 8607
▁axis 8608
▁consuming 8609
Alternatively 8610
▁steadily 8611
▁shelves 8612
▁portal 8613
▁memorable 8614
▁inhibition 8615
▁declare 8616
▁questionnaire 8617
▁Josh 8618
▁NBA 8619
▁Wait 8620
▁derivative 8621
▁assurance 8622
▁quantify 8623
▁sphere 8624
▁stylish 8625
▁sixteenth 8626
▁scarce 8627
▁simulate 8628
▁Anyone 8629
▁Wisconsin 8630
▁booth 8631
▁cinema 8632
▁Austin 8633
▁Hopefully 8634
▁fourteenth 8635
▁applicant 8636
▁replay 8637
▁arriving 8638
▁triple 8639
▁ME 8640
▁Short 8641
▁Girl 8642
▁nonprofit 8643
▁categor 8644
mouth 8645
▁Detroit 8646
Different 8647
▁rude 8648
▁pollution 8649
Something 8650
▁vegetable 8651
▁renewable 8652
▁Golden 8653
▁rally 8654
▁workforce 8655
▁patron 8656
▁blown 8657
keeper 8658
▁cardiovascular 8659
▁originate 8660
▁contemplate 8661
▁conservation 8662
▁Thanksgiving 8663
Could 8664
▁void 8665
▁binary 8666
▁aluminum 8667
▁configure 8668
▁qualification 8669
▁boast 8670
▁Johnny 8671
▁sixties 8672
▁yearoveryear 8673
▁Series 8674
▁sync 8675
storm 8676
▁Shop 8677
▁retire 8678
▁practicing 8679
▁manipulate 8680
Three 8681
▁underwriting 8682
flat 8683
▁rag 8684
▁shiny 8685
▁gem 8686
▁spinning 8687
▁flex 8688
escence 8689
▁expire 8690
▁discomfort 8691
▁confidential 8692
▁Sean 8693
▁verdict 8694
▁Standard 8695
▁observer 8696
▁contra 8697
▁Stop 8698
▁Liverpool 8699
▁practitioner 8700
▁variance 8701
▁interfere 8702
▁Carter 8703
▁marvel 8704
▁magnificent 8705
▁distinctive 8706
▁sadness 8707
▁Drive 8708
▁crunch 8709
▁lounge 8710
▁designated 8711
Interestingly 8712
▁spur 8713
▁synthetic 8714
▁Fran 8715
▁Nice 8716
▁Brook 8717
▁credibility 8718
▁jewel 8719
▁fitted 8720
▁dependence 8721
▁equality 8722
▁definitive 8723
▁dissolve 8724
▁irrelevant 8725
▁embryo 8726
▁chemotherapy 8727
▁labour 8728
▁leasing 8729
suit 8730
▁portable 8731
Additional 8732
▁Wolf 8733
step 8734
▁Creek 8735
▁Seven 8736
▁Bruce 8737
▁wheat 8738
▁bulb 8739
Should 8740
▁tide 8741
develop 8742
▁calcium 8743
▁vivo 8744
▁normalized 8745
▁exempt 8746
▁crust 8747
▁collision 8748
▁Eagle 8749
▁Danny 8750
▁Massachusetts 8751
▁honour 8752
▁Alaska 8753
▁rejection 8754
▁Lisa 8755
▁miserable 8756
▁bacterial 8757
▁hydr 8758
▁frequencies 8759
▁digging 8760
▁Clean 8761
▁civilization 8762
▁approve 8763
▁ashamed 8764
▁hiking 8765
▁agricultural 8766
▁unchanged 8767
▁Romney 8768
▁competitor 8769
▁wildlife 8770
ophil 8771
▁repurchase 8772
▁bruise 8773
wide 8774
▁wax 8775
Read 8776
value 8777
▁recruitment 8778
screen 8779
▁qualitative 8780
▁ballot 8781
▁streak 8782
▁accelerating 8783
▁spun 8784
ogenic 8785
Honestly 8786
▁posture 8787
▁commerce 8788
▁authorized 8789
▁Burn 8790
▁freight 8791
▁activate 8792
▁patrol 8793
▁Championship 8794
▁secular 8795
▁Administration 8796
▁deviation 8797
▁Ruth 8798
▁obesity 8799
▁Flor 8800
▁Dick 8801
▁renovation 8802
▁assortment 8803
ello 8804
▁Silver 8805
▁exterior 8806
▁pinch 8807
▁scanning 8808
▁featuring 8809
▁relevance 8810
Chris 8811
▁pistol 8812
▁Lots 8813
▁trivial 8814
▁Gordon 8815
▁View 8816
▁vitro 8817
▁volatile 8818
rrh 8819
▁Listen 8820
▁Heart 8821
▁fastest 8822
logical 8823
▁revelation 8824
▁residual 8825
▁pork 8826
▁estimation 8827
▁insufficient 8828
▁coworker 8829
ogram 8830
▁conjunction 8831
▁lipid 8832
▁bacon 8833
▁dye 8834
▁wrinkle 8835
▁characterize 8836
▁navigation 8837
▁grape 8838
▁bride 8839
ieving 8840
▁socks 8841
▁missile 8842
▁inquiry 8843
▁jack 8844
▁pseudo 8845
▁debris 8846
▁broaden 8847
▁cement 8848
▁replied 8849
▁sensible 8850
▁Lion 8851
▁exert 8852
▁Thor 8853
▁attendance 8854
▁bru 8855
▁metaphor 8856
▁mug 8857
▁lime 8858
▁numb 8859
▁vegan 8860
▁MR 8861
wick 8862
▁Alabama 8863
▁relentless 8864
▁monkey 8865
▁driveway 8866
▁presume 8867
Among 8868
▁GDP 8869
▁singular 8870
▁automobile 8871
▁deferred 8872
▁Jamie 8873
▁Glen 8874
▁circular 8875
▁CPU 8876
▁expose 8877
▁dietary 8878
▁gratitude 8879
▁banana 8880
▁extraction 8881
▁stirring 8882
▁benchmark 8883
▁mitochondria 8884
▁slammed 8885
▁educate 8886
▁Simply 8887
▁unsure 8888
▁Better 8889
▁Oklahoma 8890
▁Joan 8891
▁legislative 8892
▁sovereign 8893
▁puff 8894
▁Gabriel 8895
▁physiological 8896
▁relaxation 8897
▁popped 8898
▁Sara 8899
▁Field 8900
▁PDF 8901
▁showcase 8902
▁compartment 8903
▁Wales 8904
▁thirteenth 8905
▁mapping 8906
Think 8907
▁GOP 8908
▁Aaron 8909
▁Penn 8910
▁tragic 8911
▁banner 8912
▁claw 8913
▁intrinsic 8914
▁geographical 8915
▁anticipation 8916
▁Rule 8917
▁semiconductor 8918
▁swirl 8919
▁temporarily 8920
▁formulation 8921
▁respectful 8922
writer 8923
proof 8924
▁colorful 8925
▁frost 8926
▁lion 8927
▁empire 8928
▁Revolution 8929
▁antioxidant 8930
▁zombie 8931
Find 8932
▁Price 8933
▁stalk 8934
▁scandal 8935
▁Manhattan 8936
▁devastating 8937
▁participant 8938
▁validity 8939
▁tack 8940
▁kilometers 8941
about 8942
▁Denver 8943
▁Lou 8944
▁racism 8945
▁threaten 8946
▁patio 8947
▁declining 8948
▁tasty 8949
hawk 8950
▁erect 8951
▁seizure 8952
▁summon 8953
cca 8954
▁stadium 8955
▁withdrawal 8956
▁amplitude 8957
▁Currently 8958
▁drastic 8959
Work 8960
▁rigorous 8961
▁conspiracy 8962
▁derive 8963
▁stressful 8964
▁headquarters 8965
▁Cooper 8966
▁Jean 8967
▁gossip 8968
▁detector 8969
▁flare 8970
▁Berlin 8971
▁ribbon 8972
▁flap 8973
▁Nathan 8974
▁abundant 8975
▁curated 8976
▁subset 8977
▁Jerry 8978
▁Sweden 8979
▁perceive 8980
▁welcoming 8981
▁Treat 8982
▁Arabia 8983
▁autumn 8984
▁sprinkle 8985
▁Pete 8986
▁Change 8987
▁lend 8988
▁combining 8989
▁tapped 8990
▁comparative 8991
▁amino 8992
▁discourage 8993
▁kidnap 8994
▁diagnose 8995
▁epic 8996
▁Tennessee 8997
pack 8998
▁pharmaceutical 8999
▁scramble 9000
▁CNN 9001
▁Certainly 9002
▁homeowner 9003
▁intersection 9004
▁tropical 9005
▁Judge 9006
▁Depend 9007
▁greed 9008
bacter 9009
▁Morris 9010
▁seasonality 9011
▁Syrian 9012
▁Review 9013
▁causal 9014
Previous 9015
▁arbitrary 9016
▁tweak 9017
▁cannabis 9018
▁churn 9019
▁freezing 9020
▁shining 9021
▁adaptation 9022
▁ginger 9023
▁Death 9024
▁curriculum 9025
▁nonsense 9026
▁bicycle 9027
▁Palm 9028
▁Cloud 9029
▁blogging 9030
▁mercy 9031
lving 9032
▁frown 9033
▁demonstrating 9034
▁residue 9035
▁spiral 9036
▁pillar 9037
▁problematic 9038
▁habitat 9039
▁pulmonary 9040
▁Linux 9041
▁agriculture 9042
▁Whit 9043
▁whatsoever 9044
▁steak 9045
▁hugged 9046
▁revolve 9047
▁approximation 9048
▁rhetoric 9049
▁mac 9050
▁architect 9051
▁vibration 9052
▁sustainability 9053
▁worm 9054
▁parliament 9055
▁shudder 9056
▁literary 9057
▁burger 9058
▁unpleasant 9059
▁Dream 9060
▁relied 9061
▁antenna 9062
▁Hitler 9063
▁wool 9064
▁fireplace 9065
▁restart 9066
▁slap 9067
▁Egyptian 9068
▁Moscow 9069
▁Manager 9070
▁sunny 9071
foot 9072
▁prescribed 9073
▁GPS 9074
▁alliance 9075
▁Write 9076
▁Anthony 9077
▁turnover 9078
▁Development 9079
▁cache 9080
▁Express 9081
▁Moore 9082
▁unfortunate 9083
▁inevitably 9084
▁penetrate 9085
Start 9086
▁invade 9087
▁ignoring 9088
▁cartoon 9089
▁hockey 9090
▁speculation 9091
▁recession 9092
▁Blake 9093
▁restoration 9094
▁litter 9095
▁artery 9096
Consider 9097
▁escort 9098
▁vanilla 9099
▁Pick 9100
▁Poland 9101
▁antigen 9102
▁osteo 9103
▁algebra 9104
▁defining 9105
▁slavery 9106
▁dairy 9107
▁conquer 9108
▁governance 9109
▁computational 9110
▁mandatory 9111
▁Eddie 9112
▁Winter 9113
▁HTML 9114
▁Living 9115
▁Left 9116
▁Craig 9117
▁nevertheless 9118
▁Travel 9119
▁relieve 9120
disciplinary 9121
▁Contact 9122
▁oak 9123
ancies 9124
▁terrorism 9125
▁Studio 9126
▁sunset 9127
▁yo 9128
▁Getting 9129
▁excluding 9130
▁recycling 9131
▁constructive 9132
▁scam 9133
▁discern 9134
phon 9135
▁teenage 9136
▁informative 9137
▁potent 9138
▁Technology 9139
▁potato 9140
▁paw 9141
▁accumulation 9142
▁Step 9143
▁endeavor 9144
▁peptide 9145
▁hatch 9146
▁blush 9147
▁Digital 9148
▁passport 9149
▁Rich 9150
▁Uncle 9151
▁flies 9152
▁taxpayer 9153
▁psychology 9154
▁JavaScript 9155
▁gambling 9156
▁Steel 9157
▁foresee 9158
▁supervisor 9159
▁ingredient 9160
▁ripped 9161
▁Clinic 9162
▁indulge 9163
▁Collect 9164
▁advertisement 9165
▁cattle 9166
▁turkey 9167
▁lamb 9168
▁disposition 9169
▁licensing 9170
▁Larry 9171
▁elastic 9172
▁societies 9173
▁visa 9174
▁immunity 9175
▁concession 9176
▁Tommy 9177
▁Similarly 9178
▁Halloween 9179
▁conscience 9180
▁Smart 9181
▁Tower 9182
▁chasing 9183
▁versatile 9184
▁induction 9185
▁Library 9186
▁enrollment 9187
▁Nigeria 9188
▁yeast 9189
▁motorcycle 9190
▁nonetheless 9191
▁proximity 9192
▁Mount 9193
▁Enjoy 9194
▁obscure 9195
Back 9196
▁compose 9197
Until 9198
▁diligent 9199
blast 9200
▁isolate 9201
▁uncommon 9202
▁Circuit 9203
▁rotate 9204
▁empirical 9205
Har 9206
▁Claire 9207
▁Tax 9208
▁circulation 9209
code 9210
▁decorated 9211
▁Warren 9212
Check 9213
▁discrete 9214
vocation 9215
▁accountability 9216
▁mimic 9217
▁elder 9218
▁plague 9219
function 9220
▁browse 9221
▁Select 9222
▁varieties 9223
▁Iranian 9224
▁symmetry 9225
▁Jeremy 9226
▁assembled 9227
▁pronounced 9228
▁gradient 9229
▁augment 9230
▁cholesterol 9231
▁Kennedy 9232
▁encouragement 9233
▁hollow 9234
▁peek 9235
Actually 9236
▁controversy 9237
▁permalink 9238
▁Nature 9239
▁Annie 9240
▁supermarket 9241
▁Victor 9242
Third 9243
▁tee 9244
▁inviting 9245
▁Model 9246
▁dorm 9247
▁retrospective 9248
▁hydrogen 9249
▁maturity 9250
▁reconstruction 9251
▁feasible 9252
▁Figure 9253
▁manifestation 9254
▁Jerusalem 9255
▁proprietary 9256
▁Spec 9257
▁asthma 9258
▁Hannah 9259
▁footsteps 9260
ika 9261
▁peanut 9262
▁fame 9263
▁radar 9264
▁judicial 9265
▁monument 9266
▁Daily 9267
▁shoved 9268
▁unprecedented 9269
▁palace 9270
▁twenties 9271
▁surround 9272
▁Beijing 9273
written 9274
▁proving 9275
▁Snow 9276
▁Aunt 9277
▁orchestra 9278
▁leisure 9279
▁Lock 9280
▁inclined 9281
▁examining 9282
▁catalyst 9283
▁Local 9284
▁Alexander 9285
▁conceive 9286
Normally 9287
▁adolescent 9288
▁wolf 9289
▁Private 9290
▁elephant 9291
zen 9292
▁Conservative 9293
▁Solutions 9294
▁waking 9295
▁forgiveness 9296
▁clone 9297
▁Wayne 9298
▁CIA 9299
▁roster 9300
▁Indonesia 9301
▁imperative 9302
▁cardio 9303
▁Duke 9304
▁Staff 9305
▁scaling 9306
given 9307
▁stunned 9308
▁exotic 9309
▁degradation 9310
▁Missouri 9311
▁graft 9312
▁decreasing 9313
▁Anything 9314
▁spacious 9315
▁collaborative 9316
▁CBD 9317
▁economies 9318
▁Connect 9319
ulu 9320
▁dart 9321
Time 9322
▁foul 9323
▁mourn 9324
▁Bryan 9325
▁editorial 9326
▁Trade 9327
▁airplane 9328
▁geometry 9329
▁prolonged 9330
▁releasing 9331
▁Together 9332
▁choke 9333
▁stool 9334
▁spider 9335
▁riot 9336
▁celebrating 9337
▁adore 9338
▁galaxy 9339
▁hobby 9340
▁skate 9341
▁operative 9342
smith 9343
▁backdrop 9344
▁reimbursement 9345
▁remedy 9346
▁analyzing 9347
▁predictive 9348
▁Guide 9349
▁Kyle 9350
▁Hawk 9351
▁vivid 9352
▁Fast 9353
▁articulate 9354
nitially 9355
▁pledge 9356
▁explosive 9357
▁dignity 9358
▁flourish 9359
▁foremost 9360
▁recognizing 9361
▁urine 9362
▁artifact 9363
▁statutory 9364
▁stellar 9365
▁albeit 9366
▁nonlinear 9367
▁Monte 9368
▁communicating 9369
▁aisle 9370
▁Margaret 9371
▁marble 9372
▁envision 9373
▁accusation 9374
▁acquiring 9375
▁Policy 9376
▁Stock 9377
▁Festival 9378
▁vomit 9379
shift 9380
▁spectral 9381
▁trademark 9382
▁prosecution 9383
▁Marcus 9384
▁Must 9385
▁conceptual 9386
▁delegate 9387
▁robe 9388
▁basin 9389
▁Deep 9390
▁unlimited 9391
giving 9392
▁diversified 9393
▁impulse 9394
▁Finn 9395
▁scout 9396
▁fragile 9397
▁terrain 9398
▁Governor 9399
▁lightweight 9400
including 9401
▁fossil 9402
▁Basically 9403
▁Below 9404
▁inexpensive 9405
▁fixture 9406
▁Portland 9407
▁Hindu 9408
writing 9409
▁firearm 9410
▁Jonathan 9411
▁Kentucky 9412
▁Russell 9413
▁ensu 9414
▁microwave 9415
▁exponential 9416
▁groom 9417
▁scanned 9418
▁earliest 9419
▁Search 9420
▁gloss 9421
▁cosmetic 9422
▁equilibrium 9423
▁enlighten 9424
▁opera 9425
▁bizarre 9426
▁clench 9427
▁sympathy 9428
▁cycling 9429
▁WordPress 9430
▁carriage 9431
▁cyst 9432
▁Record 9433
Ladies 9434
▁invented 9435
▁fifties 9436
▁phenotype 9437
▁Access 9438
▁computation 9439
▁Insurance 9440
Regarding 9441
▁initiate 9442
▁shrug 9443
▁metallic 9444
▁scientist 9445
bank 9446
▁senator 9447
▁Baby 9448
▁OEM 9449
ncluding 9450
▁Oxford 9451
▁assassin 9452
▁Netflix 9453
▁Outside 9454
▁Maryland 9455
▁glorious 9456
▁Maggie 9457
▁flipped 9458
▁Senator 9459
▁Remove 9460
▁cultivate 9461
▁optimism 9462
▁inadequate 9463
▁reinvest 9464
▁Direct 9465
▁centimeters 9466
▁Mississippi 9467
▁tangible 9468
▁composite 9469
▁Austria 9470
▁pediatric 9471
▁impaired 9472
▁underestimate 9473
▁transmitted 9474
▁ignorance 9475
▁Season 9476
▁acres 9477
▁quasi 9478
▁competent 9479
▁Factor 9480
▁journalism 9481
▁plunge 9482
▁Heaven 9483
▁heavier 9484
▁Utah 9485
▁Netherlands 9486
▁slump 9487
Develop 9488
▁History 9489
▁parade 9490
▁advancing 9491
▁slack 9492
▁Industrial 9493
▁annoyed 9494
▁silicon 9495
▁solicit 9496
▁semester 9497
▁prototype 9498
activity 9499
▁complementary 9500
▁energies 9501
frame 9502
▁earthquake 9503
▁verified 9504
▁exclusion 9505
▁balancing 9506
▁fetch 9507
▁stripped 9508
▁cube 9509
▁organizing 9510
▁Ontario 9511
▁ambulance 9512
▁capturing 9513
▁resonance 9514
virus 9515
About 9516
▁Mau 9517
▁maternal 9518
▁Walter 9519
▁comfortably 9520
▁alpha 9521
▁Taiwan 9522
▁Orleans 9523
▁Knight 9524
▁vinegar 9525
▁migrate 9526
▁dispose 9527
▁Ministry 9528
▁galaxies 9529
▁presumably 9530
▁limp 9531
▁clay 9532
▁reckon 9533
▁incurred 9534
▁picnic 9535
▁Jew 9536
▁Support 9537
▁dude 9538
▁unreal 9539
▁hypertension 9540
▁paradigm 9541
▁utilities 9542
▁avenue 9543
▁Cleveland 9544
▁Nancy 9545
▁prophet 9546
▁messaging 9547
▁manipulation 9548
▁disciple 9549
▁reopen 9550
▁monetary 9551
▁speculate 9552
▁stimulus 9553
▁whirl 9554
▁blot 9555
▁broth 9556
▁energetic 9557
▁Phoenix 9558
quarter 9559
▁unaware 9560
▁chlor 9561
▁Medi 9562
▁kernel 9563
▁declaration 9564
▁integrating 9565
▁shaft 9566
▁Quick 9567
▁pandemic 9568
▁undoubtedly 9569
▁constitution 9570
▁lattice 9571
Employ 9572
motion 9573
▁predator 9574
▁blockchain 9575
strict 9576
▁revise 9577
▁geography 9578
scape 9579
▁Semi 9580
▁wagon 9581
▁hostile 9582
▁deficiency 9583
▁clause 9584
▁crouch 9585
▁Oscar 9586
▁impress 9587
▁philosophical 9588
▁Close 9589
▁voluntary 9590
▁situated 9591
▁clerk 9592
▁Oliver 9593
▁sorrow 9594
▁Turkish 9595
▁salvation 9596
▁Vancouver 9597
▁twitch 9598
walk 9599
▁jazz 9600
uzz 9601
▁mRNA 9602
▁occupy 9603
▁sympathetic 9604
▁Francis 9605
▁encode 9606
▁hetero 9607
▁thirties 9608
▁obsessed 9609
▁damaging 9610
▁Corporation 9611
▁attributable 9612
▁scalp 9613
▁Eye 9614
▁mutant 9615
▁saddle 9616
▁sank 9617
▁seminar 9618
▁spectra 9619
▁funnel 9620
▁bracket 9621
▁revenge 9622
▁bandwidth 9623
▁Karen 9624
▁termination 9625
Otherwise 9626
▁unwanted 9627
▁temptation 9628
▁Visit 9629
▁actress 9630
▁Consumer 9631
▁pumpkin 9632
▁inference 9633
Ju 9634
opathy 9635
▁biopsy 9636
▁invalid 9637
▁Mediterranean 9638
▁premature 9639
▁vaccination 9640
▁coincide 9641
▁Switzerland 9642
▁approximate 9643
▁gospel 9644
▁Jennifer 9645
▁amenities 9646
▁peculiar 9647
▁wives 9648
▁glitter 9649
▁stole 9650
Individual 9651
▁biomarker 9652
▁confined 9653
▁Convention 9654
Essential 9655
▁Command 9656
▁Tiger 9657
▁Louisiana 9658
▁Medicaid 9659
▁Agency 9660
▁tempted 9661
▁odor 9662
▁undermine 9663
▁liberty 9664
▁Nelson 9665
▁harness 9666
▁tasting 9667
Eventually 9668
▁Harvard 9669
▁iOS 9670
▁occupancy 9671
▁reiterate 9672
▁graduation 9673
▁encompass 9674
々 9675
! 9676
" 9677
# 9678
$ 9679
% 9680
& 9681
( 9682
) 9683
* 9684
+ 9685
, 9686
- 9687
. 9688
/ 9689
0 9690
1 9691
2 9692
3 9693
4 9694
5 9695
6 9696
7 9697
8 9698
9 9699
: 9700
; 9701
< 9702
= 9703
> 9704
? 9705
@ 9706
[ 9707
\ 9708
] 9709
^ 9710
_ 9711
` 9712
{ 9713
| 9714
} 9715
~ 9716
· 9717
— 9718
― 9719
‘ 9720
’ 9721
“ 9722
” 9723
… 9724
‧ 9725
℃ 9726
○ 9727
、 9728
。 9729
〃 9730
〆 9731
〇 9732
〈 9733
〉 9734
《 9735
》 9736
「 9737
」 9738
『 9739
』 9740
【 9741
】 9742
〒 9743
〜 9744
〝 9745
〞 9746
ぁ 9747
あ 9748
ぃ 9749
い 9750
ぅ 9751
う 9752
ぇ 9753
え 9754
ぉ 9755
お 9756
か 9757
が 9758
き 9759
ぎ 9760
く 9761
ぐ 9762
け 9763
げ 9764
こ 9765
ご 9766
さ 9767
ざ 9768
し 9769
じ 9770
す 9771
ず 9772
せ 9773
ぜ 9774
そ 9775
ぞ 9776
た 9777
だ 9778
ち 9779
ぢ 9780
っ 9781
つ 9782
づ 9783
て 9784
で 9785
と 9786
ど 9787
な 9788
に 9789
ぬ 9790
ね 9791
の 9792
は 9793
ば 9794
ぱ 9795
ひ 9796
び 9797
ぴ 9798
ふ 9799
ぶ 9800
ぷ 9801
へ 9802
べ 9803
ぺ 9804
ほ 9805
ぼ 9806
ぽ 9807
ま 9808
み 9809
む 9810
め 9811
も 9812
ゃ 9813
や 9814
ゅ 9815
ゆ 9816
ょ 9817
よ 9818
ら 9819
り 9820
る 9821
れ 9822
ろ 9823
わ 9824
ゐ 9825
ゑ 9826
を 9827
ん 9828
ゝ 9829
ゞ 9830
ァ 9831
ア 9832
ィ 9833
イ 9834
ゥ 9835
ウ 9836
ェ 9837
エ 9838
ォ 9839
オ 9840
カ 9841
ガ 9842
キ 9843
ギ 9844
ク 9845
グ 9846
ケ 9847
ゲ 9848
コ 9849
ゴ 9850
サ 9851
ザ 9852
シ 9853
ジ 9854
ス 9855
ズ 9856
セ 9857
ゼ 9858
ソ 9859
ゾ 9860
タ 9861
ダ 9862
チ 9863
ヂ 9864
ッ 9865
ツ 9866
ヅ 9867
テ 9868
デ 9869
ト 9870
ド 9871
ナ 9872
ニ 9873
ヌ 9874
ネ 9875
ノ 9876
ハ 9877
バ 9878
パ 9879
ヒ 9880
ビ 9881
ピ 9882
フ 9883
ブ 9884
プ 9885
ヘ 9886
ベ 9887
ペ 9888
ホ 9889
ボ 9890
ポ 9891
マ 9892
ミ 9893
ム 9894
メ 9895
モ 9896
ャ 9897
ヤ 9898
ュ 9899
ユ 9900
ョ 9901
ヨ 9902
ラ 9903
リ 9904
ル 9905
レ 9906
ロ 9907
ヮ 9908
ワ 9909
ヰ 9910
ヱ 9911
ヲ 9912
ン 9913
ヴ 9914
ヵ 9915
ヶ 9916
・ 9917
ー 9918
ヾ 9919
㖭 9920
㗎 9921
㩒 9922
㩧 9923
䁯 9924
一 9925
丁 9926
七 9927
万 9928
丈 9929
三 9930
上 9931
下 9932
不 9933
与 9934
丐 9935
丑 9936
专 9937
且 9938
丕 9939
世 9940
丗 9941
丘 9942
丙 9943
业 9944
丛 9945
东 9946
丝 9947
丞 9948
丟 9949
両 9950
丢 9951
两 9952
严 9953
並 9954
丧 9955
丨 9956
个 9957
丫 9958
中 9959
丰 9960
串 9961
临 9962
丶 9963
丸 9964
丹 9965
为 9966
主 9967
丼 9968
丽 9969
举 9970
乂 9971
乃 9972
久 9973
乇 9974
么 9975
义 9976
之 9977
乌 9978
乍 9979
乎 9980
乏 9981
乐 9982
乒 9983
乓 9984
乔 9985
乖 9986
乗 9987
乘 9988
乙 9989
乜 9990
九 9991
乞 9992
也 9993
习 9994
乡 9995
乢 9996
书 9997
乩 9998
乪 9999
买 10000
乱 10001
乳 10002
乸 10003
乾 10004
亀 10005
亁 10006
亂 10007
了 10008
予 10009
争 10010
事 10011
二 10012
亍 10013
于 10014
亏 10015
云 10016
互 10017
亓 10018
五 10019
井 10020
亘 10021
亙 10022
亚 10023
些 10024
亜 10025
亞 10026
亟 10027
亡 10028
亢 10029
交 10030
亥 10031
亦 10032
产 10033
亨 10034
亩 10035
享 10036
京 10037
亭 10038
亮 10039
亰 10040
亲 10041
亳 10042
亵 10043
亶 10044
亹 10045
人 10046
亿 10047
什 10048
仁 10049
仂 10050
仃 10051
仄 10052
仅 10053
仆 10054
仇 10055
仉 10056
今 10057
介 10058
仍 10059
从 10060
仏 10061
仑 10062
仓 10063
仔 10064
仕 10065
他 10066
仗 10067
付 10068
仙 10069
仝 10070
仞 10071
仟 10072
仡 10073
代 10074
令 10075
以 10076
仨 10077
仪 10078
仫 10079
们 10080
仭 10081
仮 10082
仰 10083
仲 10084
仳 10085
仵 10086
件 10087
价 10088
任 10089
份 10090
仿 10091
企 10092
伃 10093
伄 10094
伉 10095
伊 10096
伋 10097
伍 10098
伎 10099
伏 10100
伐 10101
休 10102
众 10103
优 10104
伙 10105
会 10106
伛 10107
伜 10108
伝 10109
伞 10110
伟 10111
传 10112
伢 10113
伤 10114
伥 10115
伦 10116
伧 10117
伪 10118
伫 10119
伯 10120
估 10121
伱 10122
伲 10123
伴 10124
伶 10125
伷 10126
伸 10127
伺 10128
似 10129
伽 10130
佃 10131
但 10132
佇 10133
佈 10134
佉 10135
位 10136
低 10137
住 10138
佐 10139
佑 10140
体 10141
佔 10142
何 10143
佗 10144
佘 10145
余 10146
佚 10147
佛 10148
作 10149
佝 10150
佞 10151
佟 10152
你 10153
佢 10154
佣 10155
佤 10156
佥 10157
佩 10158
佬 10159
佯 10160
佰 10161
佳 10162
併 10163
佶 10164
佷 10165
佺 10166
佻 10167
佼 10168
佾 10169
使 10170
侂 10171
侃 10172
侄 10173
來 10174
侈 10175
侉 10176
例 10177
侍 10178
侏 10179
侑 10180
侓 10181
侔 10182
侗 10183
侘 10184
供 10185
依 10186
侠 10187
価 10188
侣 10189
侥 10190
侦 10191
侧 10192
侨 10193
侩 10194
侪 10195
侬 10196
侭 10197
侮 10198
侯 10199
侵 10200
侶 10201
侷 10202
便 10203
係 10204
促 10205
俄 10206
俅 10207
俊 10208
俎 10209
俏 10210
俐 10211
俑 10212
俔 10213
俗 10214
俘 10215
俚 10216
俛 10217
俜 10218
保 10219
俞 10220
俟 10221
俠 10222
信 10223
俢 10224
俣 10225
俤 10226
俦 10227
俨 10228
俩 10229
俪 10230
俬 10231
俭 10232
修 10233
俯 10234
俱 10235
俳 10236
俵 10237
俶 10238
俸 10239
俺 10240
俾 10241
倅 10242
倆 10243
倉 10244
個 10245
倌 10246
倍 10247
倏 10248
們 10249
倒 10250
倓 10251
倔 10252
倖 10253
倘 10254
候 10255
倚 10256
倜 10257
借 10258
倡 10259
倢 10260
倣 10261
値 10262
倥 10263
倦 10264
倧 10265
倨 10266
倩 10267
倪 10268
倫 10269
倬 10270
倭 10271
倮 10272
倶 10273
倹 10274
债 10275
值 10276
倾 10277
偁 10278
偃 10279
假 10280
偈 10281
偉 10282
偌 10283
偎 10284
偏 10285
偓 10286
偕 10287
偖 10288
做 10289
停 10290
健 10291
偬 10292
偭 10293
偱 10294
偲 10295
側 10296
偵 10297
偶 10298
偷 10299
偸 10300
偻 10301
偽 10302
偾 10303
偿 10304
傀 10305
傅 10306
傈 10307
傍 10308
傑 10309
傕 10310
傘 10311
備 10312
傜 10313
傢 10314
傣 10315
傥 10316
傧 10317
储 10318
傩 10319
傫 10320
催 10321
傭 10322
傲 10323
傳 10324
傴 10325
債 10326
傷 10327
傺 10328
傻 10329
傾 10330
僂 10331
僅 10332
僆 10333
僉 10334
僊 10335
働 10336
像 10337
僑 10338
僔 10339
僕 10340
僖 10341
僚 10342
僞 10343
僣 10344
僥 10345
僦 10346
僧 10347
僬 10348
僭 10349
僮 10350
僱 10351
僳 10352
僵 10353
價 10354
僻 10355
儀 10356
儁 10357
儂 10358
億 10359
儆 10360
儈 10361
儉 10362
儋 10363
儒 10364
儔 10365
儕 10366
儘 10367
儚 10368
償 10369
儡 10370
優 10371
儲 10372
儷 10373
儺 10374
儼 10375
儿 10376
兀 10377
允 10378
元 10379
兄 10380
充 10381
兆 10382
兇 10383
先 10384
光 10385
兊 10386
克 10387
兌 10388
免 10389
兎 10390
児 10391
兑 10392
兒 10393
兔 10394
兕 10395
兖 10396
党 10397
兜 10398
兢 10399
入 10400
內 10401
全 10402
兩 10403
兪 10404
八 10405
公 10406
六 10407
兮 10408
兰 10409
共 10410
关 10411
兴 10412
兵 10413
其 10414
具 10415
典 10416
兹 10417
养 10418
兼 10419
兽 10420
冀 10421
冂 10422
内 10423
円 10424
冇 10425
冈 10426
冉 10427
冊 10428
册 10429
再 10430
冏 10431
冑 10432
冒 10433
冕 10434
冖 10435
冗 10436
写 10437
冚 10438
军 10439
农 10440
冠 10441
冢 10442
冤 10443
冥 10444
冦 10445
冧 10446
冨 10447
冩 10448
冪 10449
冫 10450
冬 10451
冮 10452
冯 10453
冰 10454
冱 10455
冲 10456
决 10457
冴 10458
况 10459
冶 10460
冷 10461
冻 10462
冼 10463
冽 10464
冿 10465
净 10466
凄 10467
准 10468
凇 10469
凈 10470
凉 10471
凊 10472
凋 10473
凌 10474
凍 10475
减 10476
凑 10477
凖 10478
凛 10479
凜 10480
凝 10481
几 10482
凡 10483
凢 10484
凤 10485
処 10486
凧 10487
凩 10488
凪 10489
凫 10490
凭 10491
凯 10492
凰 10493
凱 10494
凳 10495
凵 10496
凶 10497
凸 10498
凹 10499
出 10500
击 10501
凼 10502
函 10503
凿 10504
刀 10505
刁 10506
刃 10507
分 10508
切 10509
刈 10510
刊 10511
刍 10512
刎 10513
刑 10514
划 10515
刔 10516
列 10517
刘 10518
则 10519
刚 10520
创 10521
初 10522
删 10523
判 10524
別 10525
刨 10526
利 10527
刪 10528
别 10529
刬 10530
刭 10531
刮 10532
到 10533
刳 10534
制 10535
刷 10536
券 10537
刹 10538
刺 10539
刻 10540
刼 10541
刽 10542
刿 10543
剀 10544
剁 10545
剂 10546
剃 10547
剅 10548
則 10549
削 10550
剋 10551
剌 10552
前 10553
剎 10554
剐 10555
剑 10556
剔 10557
剕 10558
剖 10559
剛 10560
剜 10561
剝 10562
剞 10563
剟 10564
剡 10565
剣 10566
剤 10567
剥 10568
剧 10569
剩 10570
剪 10571
副 10572
剰 10573
剱 10574
割 10575
剴 10576
創 10577
剽 10578
剿 10579
劂 10580
劃 10581
劇 10582
劈 10583
劉 10584
劍 10585
劏 10586
劑 10587
劒 10588
劓 10589
劔 10590
力 10591
劝 10592
办 10593
功 10594
加 10595
务 10596
劢 10597
劣 10598
动 10599
助 10600
努 10601
劫 10602
劬 10603
劭 10604
励 10605
劲 10606
劳 10607
労 10608
劵 10609
効 10610
劼 10611
劾 10612
势 10613
勁 10614
勃 10615
勅 10616
勇 10617
勉 10618
勋 10619
勍 10620
勐 10621
勒 10622
動 10623
勖 10624
勗 10625
勘 10626
務 10627
勛 10628
勝 10629
勞 10630
募 10631
勠 10632
勢 10633
勣 10634
勤 10635
勦 10636
勧 10637
勮 10638
勰 10639
勲 10640
勳 10641
勵 10642
勸 10643
勹 10644
勺 10645
勻 10646
勾 10647
勿 10648
匀 10649
匁 10650
匂 10651
包 10652
匆 10653
匈 10654
匍 10655
匏 10656
匐 10657
匕 10658
化 10659
北 10660
匙 10661
匚 10662
匜 10663
匝 10664
匠 10665
匡 10666
匣 10667
匪 10668
匮 10669
匯 10670
匱 10671
匸 10672
匹 10673
区 10674
医 10675
匼 10676
匽 10677
匾 10678
匿 10679
區 10680
十 10681
千 10682
卅 10683
卆 10684
升 10685
午 10686
卉 10687
半 10688
卍 10689
华 10690
协 10691
卑 10692
卒 10693
卓 10694
協 10695
单 10696
卖 10697
南 10698
単 10699
博 10700
卜 10701
卞 10702
卟 10703
占 10704
卡 10705
卢 10706
卣 10707
卤 10708
卦 10709
卧 10710
卫 10711
卬 10712
卮 10713
卯 10714
印 10715
危 10716
卲 10717
即 10718
却 10719
卵 10720
卷 10721
卸 10722
卺 10723
卻 10724
卿 10725
厂 10726
厄 10727
厅 10728
历 10729
厉 10730
压 10731
厌 10732
厍 10733
厐 10734
厓 10735
厔 10736
厕 10737
厖 10738
厘 10739
厚 10740
厝 10741
原 10742
厠 10743
厢 10744
厣 10745
厥 10746
厦 10747
厨 10748
厩 10749
厭 10750
厮 10751
厰 10752
厲 10753
厳 10754
厶 10755
去 10756
县 10757
叁 10758
参 10759
參 10760
叆 10761
又 10762
叉 10763
及 10764
友 10765
双 10766
反 10767
収 10768
发 10769
叔 10770
取 10771
受 10772
变 10773
叙 10774
叛 10775
叟 10776
叠 10777
叡 10778
叢 10779
口 10780
古 10781
句 10782
另 10783
叨 10784
叩 10785
只 10786
叫 10787
召 10788
叭 10789
叮 10790
可 10791
台 10792
叱 10793
史 10794
右 10795
叵 10796
叶 10797
号 10798
司 10799
叹 10800
叺 10801
叻 10802
叼 10803
叽 10804
吁 10805
吃 10806
各 10807
吅 10808
吆 10809
吇 10810
合 10811
吉 10812
吊 10813
吋 10814
同 10815
名 10816
后 10817
吏 10818
吐 10819
向 10820
吒 10821
吓 10822
吔 10823
吕 10824
吖 10825
吗 10826
吙 10827
君 10828
吝 10829
吞 10830
吟 10831
吠 10832
吡 10833
吣 10834
吥 10835
否 10836
吧 10837
吨 10838
吩 10839
含 10840
听 10841
吭 10842
吮 10843
启 10844
吱 10845
吲 10846
吳 10847
吴 10848
吵 10849
吶 10850
吸 10851
吹 10852
吻 10853
吼 10854
吽 10855
吾 10856
吿 10857
呀 10858
呂 10859
呃 10860
呆 10861
呈 10862
呉 10863
告 10864
呋 10865
呎 10866
呐 10867
呑 10868
呒 10869
呓 10870
呔 10871
呕 10872
呖 10873
呗 10874
员 10875
呙 10876
呛 10877
呜 10878
呟 10879
呢 10880
呣 10881
呤 10882
呦 10883
周 10884
呪 10885
呫 10886
呯 10887
呰 10888
呱 10889
呲 10890
味 10891
呵 10892
呶 10893
呷 10894
呸 10895
呻 10896
呼 10897
命 10898
咀 10899
咁 10900
咂 10901
咄 10902
咆 10903
咉 10904
咋 10905
和 10906
咎 10907
咏 10908
咐 10909
咒 10910
咔 10911
咕 10912
咖 10913
咗 10914
咘 10915
咙 10916
咚 10917
咛 10918
咝 10919
咣 10920
咤 10921
咦 10922
咧 10923
咨 10924
咩 10925
咪 10926
咫 10927
咬 10928
咭 10929
咯 10930
咱 10931
咲 10932
咳 10933
咴 10934
咵 10935
咶 10936
咷 10937
咸 10938
咹 10939
咻 10940
咽 10941
咾 10942
咿 10943
哀 10944
品 10945
哂 10946
哃 10947
哄 10948
哆 10949
哇 10950
哈 10951
哉 10952
哋 10953
哌 10954
响 10955
哎 10956
哏 10957
哐 10958
哑 10959
哒 10960
哓 10961
哔 10962
哕 10963
哖 10964
哗 10965
哘 10966
哙 10967
哚 10968
哜 10969
哝 10970
哞 10971
哟 10972
哠 10973
員 10974
哥 10975
哦 10976
哧 10977
哨 10978
哩 10979
哪 10980
哭 10981
哮 10982
哲 10983
哺 10984
哼 10985
哽 10986
唁 10987
唄 10988
唆 10989
唇 10990
唉 10991
唏 10992
唐 10993
唑 10994
唔 10995
唖 10996
唛 10997
唞 10998
唠 10999
唢 11000
唣 11001
唤 11002
唧 11003
唪 11004
唬 11005
售 11006
唯 11007
唰 11008
唱 11009
唳 11010
唵 11011
唷 11012
唸 11013
唻 11014
唼 11015
唾 11016
唿 11017
啀 11018
啁 11019
啂 11020
啃 11021
啄 11022
商 11023
啉 11024
啊 11025
啋 11026
問 11027
啐 11028
啓 11029
啕 11030
啖 11031
啜 11032
啞 11033
啟 11034
啡 11035
啤 11036
啥 11037
啦 11038
啧 11039
啩 11040
啪 11041
啫 11042
啬 11043
啭 11044
啮 11045
啯 11046
啰 11047
啱 11048
啲 11049
啵 11050
啶 11051
啷 11052
啸 11053
啻 11054
啼 11055
啾 11056
喀 11057
喁 11058
喂 11059
喃 11060
善 11061
喆 11062
喇 11063
喈 11064
喉 11065
喊 11066
喋 11067
喎 11068
喏 11069
喐 11070
喑 11071
喒 11072
喓 11073
喔 11074
喘 11075
喙 11076
喚 11077
喛 11078
喜 11079
喝 11080
喟 11081
喤 11082
喧 11083
喨 11084
喩 11085
喪 11086
喫 11087
喬 11088
單 11089
喰 11090
喱 11091
喲 11092
喳 11093
喵 11094
営 11095
喷 11096
喹 11097
喺 11098
喻 11099
喽 11100
喾 11101
嗄 11102
嗅 11103
嗆 11104
嗇 11105
嗉 11106
嗌 11107
嗍 11108
嗎 11109
嗐 11110
嗑 11111
嗒 11112
嗓 11113
嗔 11114
嗖 11115
嗙 11116
嗚 11117
嗛 11118
嗜 11119
嗝 11120
嗞 11121
嗟 11122
嗡 11123
嗣 11124
嗤 11125
嗥 11126
嗦 11127
嗨 11128
嗪 11129
嗫 11130
嗬 11131
嗮 11132
嗯 11133
嗰 11134
嗱 11135
嗲 11136
嗳 11137
嗵 11138
嗶 11139
嗷 11140
嗻 11141
嗽 11142
嗾 11143
嘀 11144
嘁 11145
嘅 11146
嘆 11147
嘈 11148
嘉 11149
嘌 11150
嘎 11151
嘏 11152
嘔 11153
嘖 11154
嘗 11155
嘘 11156
嘚 11157
嘛 11158
嘞 11159
嘟 11160
嘡 11161
嘢 11162
嘣 11163
嘤 11164
嘥 11165
嘧 11166
嘩 11167
嘬 11168
嘭 11169
嘯 11170
嘰 11171
嘱 11172
嘲 11173
嘴 11174
嘶 11175
嘸 11176
嘹 11177
嘻 11178
嘿 11179
噂 11180
噃 11181
噌 11182
噍 11183
噎 11184
噓 11185
噔 11186
噗 11187
噘 11188
噙 11189
噛 11190
噜 11191
噠 11192
噢 11193
噤 11194
器 11195
噩 11196
噪 11197
噫 11198
噬 11199
噱 11200
噴 11201
噶 11202
噸 11203
噹 11204
噺 11205
噻 11206
噼 11207
嚀 11208
嚅 11209
嚆 11210
嚇 11211
嚊 11212
嚎 11213
嚏 11214
嚐 11215
嚒 11216
嚓 11217
嚔 11218
嚕 11219
嚗 11220
嚜 11221
嚟 11222
嚠 11223
嚢 11224
嚣 11225
嚥 11226
嚨 11227
嚩 11228
嚭 11229
嚮 11230
嚯 11231
嚴 11232
嚶 11233
嚷 11234
嚼 11235
囀 11236
囁 11237
囂 11238
囃 11239
囈 11240
囉 11241
囊 11242
囍 11243
囎 11244
囑 11245
囔 11246
囖 11247
囗 11248
囚 11249
四 11250
囝 11251
回 11252
囟 11253
因 11254
囡 11255
团 11256
団 11257
囤 11258
囧 11259
囨 11260
囫 11261
园 11262
囮 11263
囯 11264
困 11265
囱 11266
囲 11267
図 11268
围 11269
囵 11270
囷 11271
囹 11272
固 11273
国 11274
图 11275
囿 11276
圀 11277
圃 11278
圄 11279
圆 11280
圈 11281
圉 11282
圊 11283
國 11284
圍 11285
圏 11286
園 11287
圓 11288
圖 11289
團 11290
圜 11291
土 11292
圣 11293
圦 11294
圧 11295
在 11296
圩 11297
圪 11298
圬 11299
圭 11300
圮 11301
圯 11302
地 11303
圳 11304
圷 11305
圹 11306
场 11307
圻 11308
圾 11309
址 11310
坂 11311
均 11312
坊 11313
坍 11314
坎 11315
坏 11316
坐 11317
坑 11318
坒 11319
块 11320
坚 11321
坛 11322
坜 11323
坝 11324
坞 11325
坟 11326
坠 11327
坡 11328
坤 11329
坦 11330
坨 11331
坩 11332
坪 11333
坭 11334
坮 11335
坯 11336
坳 11337
坷 11338
坻 11339
坼 11340
垂 11341
垃 11342
垄 11343
垅 11344
垆 11345
垇 11346
垈 11347
型 11348
垌 11349
垍 11350
垒 11351
垓 11352
垕 11353
垗 11354
垚 11355
垛 11356
垝 11357
垠 11358
垡 11359
垢 11360
垣 11361
垤 11362
垦 11363
垧 11364
垩 11365
垪 11366
垫 11367
垭 11368
垮 11369
垯 11370
垰 11371
垱 11372
垳 11373
垴 11374
垵 11375
垸 11376
埀 11377
埂 11378
埃 11379
埆 11380
埇 11381
埋 11382
埌 11383
城 11384
埏 11385
埒 11386
埓 11387
埔 11388
埕 11389
埖 11390
埗 11391
埙 11392
埚 11393
埜 11394
埝 11395
域 11396
埠 11397
埣 11398
埤 11399
埪 11400
埭 11401
埲 11402
埴 11403
埵 11404
執 11405
埸 11406
培 11407
基 11408
埼 11409
埽 11410
堀 11411
堂 11412
堃 11413
堅 11414
堆 11415
堇 11416
堊 11417
堋 11418
堌 11419
堍 11420
堎 11421
堐 11422
堑 11423
堕 11424
堙 11425
堝 11426
堞 11427
堠 11428
堡 11429
堢 11430
堤 11431
堨 11432
堪 11433
堯 11434
堰 11435
報 11436
場 11437
堵 11438
堺 11439
堼 11440
塀 11441
塁 11442
塄 11443
塊 11444
塋 11445
塌 11446
塍 11447
塑 11448
塒 11449
塔 11450
塗 11451
塘 11452
塙 11453
塚 11454
塞 11455
塢 11456
塩 11457
填 11458
塬 11459
塲 11460
塵 11461
塹 11462
塽 11463
塾 11464
墀 11465
墁 11466
境 11467
墅 11468
墉 11469
墊 11470
墎 11471
墒 11472
墓 11473
墕 11474
増 11475
墙 11476
墚 11477
墜 11478
增 11479
墟 11480
墡 11481
墨 11482
墩 11483
墫 11484
墮 11485
墳 11486
墹 11487
墺 11488
墻 11489
墼 11490
墾 11491
壁 11492
壅 11493
壇 11494
壊 11495
壌 11496
壑 11497
壓 11498
壕 11499
壗 11500
壘 11501
壜 11502
壞 11503
壟 11504
壤 11505
壩 11506
士 11507
壬 11508
壮 11509
壯 11510
声 11511
壱 11512
売 11513
壳 11514
壶 11515
壷 11516
壸 11517
壹 11518
壺 11519
壻 11520
壽 11521
处 11522
备 11523
変 11524
夊 11525
夌 11526
复 11527
夏 11528
夐 11529
夔 11530
夕 11531
外 11532
夙 11533
多 11534
夛 11535
夜 11536
够 11537
夠 11538
夢 11539
夤 11540
夥 11541
大 11542
天 11543
太 11544
夫 11545
夬 11546
夭 11547
央 11548
夯 11549
失 11550
头 11551
夷 11552
夸 11553
夹 11554
夺 11555
夼 11556
夾 11557
奁 11558
奂 11559
奄 11560
奇 11561
奈 11562
奉 11563
奋 11564
奌 11565
奎 11566
奏 11567
奐 11568
契 11569
奔 11570
奕 11571
奖 11572
套 11573
奘 11574
奚 11575
奠 11576
奢 11577
奥 11578
奧 11579
奨 11580
奪 11581
奬 11582
奭 11583
奮 11584
女 11585
奴 11586
奶 11587
奸 11588
她 11589
好 11590
妁 11591
如 11592
妃 11593
妄 11594
妆 11595
妇 11596
妈 11597
妊 11598
妍 11599
妒 11600
妓 11601
妖 11602
妗 11603
妙 11604
妝 11605
妞 11606
妣 11607
妤 11608
妥 11609
妧 11610
妨 11611
妩 11612
妪 11613
妫 11614
妬 11615
妮 11616
妯 11617
妱 11618
妲 11619
妹 11620
妺 11621
妻 11622
妽 11623
妾 11624
姆 11625
姉 11626
姊 11627
始 11628
姍 11629
姐 11630
姑 11631
姒 11632
姓 11633
委 11634
姗 11635
姘 11636
姚 11637
姜 11638
姝 11639
姣 11640
姤 11641
姥 11642
姦 11643
姨 11644
姩 11645
姪 11646
姫 11647
姬 11648
姮 11649
姶 11650
姸 11651
姹 11652
姺 11653
姻 11654
姿 11655
威 11656
娃 11657
娄 11658
娅 11659
娆 11660
娇 11661
娈 11662
娉 11663
娌 11664
娑 11665
娓 11666
娘 11667
娚 11668
娛 11669
娜 11670
娟 11671
娠 11672
娡 11673
娣 11674
娥 11675
娩 11676
娯 11677
娱 11678
娲 11679
娴 11680
娶 11681
娼 11682
娿 11683
婀 11684
婁 11685
婄 11686
婆 11687
婉 11688
婊 11689
婌 11690
婕 11691
婚 11692
婢 11693
婦 11694
婧 11695
婪 11696
婬 11697
婴 11698
婵 11699
婶 11700
婷 11701
婺 11702
婿 11703
媒 11704
媖 11705
媚 11706
媛 11707
媜 11708
媞 11709
媪 11710
媱 11711
媲 11712
媳 11713
媵 11714
媼 11715
媽 11716
媾 11717
嫁 11718
嫂 11719
嫄 11720
嫉 11721
嫋 11722
嫌 11723
嫒 11724
嫔 11725
嫖 11726
嫗 11727
嫘 11728
嫚 11729
嫡 11730
嫣 11731
嫤 11732
嫦 11733
嫩 11734
嫪 11735
嫫 11736
嫰 11737
嫱 11738
嫲 11739
嫵 11740
嫻 11741
嬅 11742
嬉 11743
嬋 11744
嬌 11745
嬖 11746
嬗 11747
嬛 11748
嬢 11749
嬥 11750
嬪 11751
嬬 11752
嬰 11753
嬲 11754
嬴 11755
嬶 11756
嬷 11757
嬸 11758
孀 11759
孃 11760
子 11761
孑 11762
孓 11763
孔 11764
孕 11765
孖 11766
字 11767
存 11768
孙 11769
孚 11770
孛 11771
孜 11772
孝 11773
孟 11774
孢 11775
季 11776
孤 11777
孥 11778
学 11779
孩 11780
孪 11781
孫 11782
孬 11783
孭 11784
孰 11785
孱 11786
孳 11787
孵 11788
學 11789
孺 11790
孽 11791
宁 11792
它 11793
宄 11794
宅 11795
宇 11796
守 11797
安 11798
宋 11799
完 11800
宍 11801
宏 11802
宓 11803
宕 11804
宗 11805
官 11806
宙 11807
定 11808
宛 11809
宜 11810
宝 11811
实 11812
実 11813
宠 11814
审 11815
客 11816
宣 11817
室 11818
宥 11819
宦 11820
宪 11821
宫 11822
宮 11823
宰 11
gitextract_j4dfeo4j/ ├── .gitattributes ├── .gitignore ├── LICENSE.txt ├── backend/ │ ├── .gitignore │ ├── CT-Transformer-punctuation/ │ │ ├── .flake8 │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── MANIFEST.in │ │ ├── README.md │ │ ├── cttPunctuator.py │ │ ├── cttpunctuator/ │ │ │ ├── __init__.py │ │ │ └── src/ │ │ │ ├── onnx/ │ │ │ │ └── configuration.json │ │ │ ├── punctuator.py │ │ │ └── utils/ │ │ │ ├── OrtInferSession.py │ │ │ └── text_post_process.py │ │ ├── setup.py │ │ ├── test/ │ │ │ ├── test.py │ │ │ └── test2.py │ │ └── version.txt │ ├── build_onefile.bat │ ├── main.py │ ├── punc-onnx/ │ │ ├── configuration.json │ │ └── punc.onnx │ ├── readme.md │ ├── requirements.txt │ ├── requirements_test.txt │ ├── sherpa-onnx/ │ │ ├── model.int8.onnx │ │ └── tokens.txt │ └── test_api.py ├── frontend/ │ ├── .gitignore │ ├── components.json │ ├── index.html │ ├── package.json │ ├── postcss.config.js │ ├── readme.md │ ├── src/ │ │ ├── VoiceRecognitionIcon.tsx │ │ ├── components/ │ │ │ └── ui/ │ │ │ ├── badge.tsx │ │ │ ├── button.tsx │ │ │ ├── card.tsx │ │ │ ├── hover-card.tsx │ │ │ ├── scroll-area.tsx │ │ │ ├── tabs.tsx │ │ │ └── tooltip.tsx │ │ ├── favicon/ │ │ │ └── site.webmanifest │ │ ├── globals.css │ │ ├── i18n.ts │ │ ├── index.html │ │ ├── lib/ │ │ │ └── utils.ts │ │ ├── log.html │ │ ├── main.ts │ │ ├── preload.ts │ │ ├── renderer.tsx │ │ └── styles.css │ ├── tailwind.config.js │ ├── tsconfig.json │ └── webpack.config.js ├── readme.md └── readme_zh.md
SYMBOL INDEX (94 symbols across 14 files)
FILE: backend/CT-Transformer-punctuation/cttPunctuator.py
class CttPunctuator (line 27) | class CttPunctuator:
method __init__ (line 31) | def __init__(self, online: bool = False, model_dir: str = None):
method punctuate (line 61) | def punctuate(self, text: str, param_dict=None):
FILE: backend/CT-Transformer-punctuation/cttpunctuator/src/punctuator.py
class CT_Transformer (line 17) | class CT_Transformer:
method __init__ (line 25) | def __init__(
method __call__ (line 59) | def __call__(self, text: Union[list, str], split_size=20):
method infer (line 146) | def infer(
class CT_Transformer_VadRealtime (line 153) | class CT_Transformer_VadRealtime(CT_Transformer):
method __init__ (line 161) | def __init__(
method __call__ (line 173) | def __call__(self, text: str, param_dict: map, split_size=20):
method vad_mask (line 289) | def vad_mask(self, size, vad_pos, dtype=np.bool_):
method infer (line 304) | def infer(
FILE: backend/CT-Transformer-punctuation/cttpunctuator/src/utils/OrtInferSession.py
class ONNXRuntimeError (line 20) | class ONNXRuntimeError(Exception):
class OrtInferSession (line 24) | class OrtInferSession:
method __init__ (line 25) | def __init__(self, model_file, device_id=-1, intra_op_num_threads=4):
method __call__ (line 69) | def __call__(
method get_input_names (line 78) | def get_input_names(
method get_output_names (line 83) | def get_output_names(
method get_character_list (line 88) | def get_character_list(self, key: str = "character"):
method have_key (line 91) | def have_key(self, key: str = "character") -> bool:
method _verify_model (line 98) | def _verify_model(model_path):
FILE: backend/CT-Transformer-punctuation/cttpunctuator/src/utils/text_post_process.py
class TokenIDConverterError (line 14) | class TokenIDConverterError(Exception):
class TokenIDConverter (line 18) | class TokenIDConverter:
method __init__ (line 19) | def __init__(
method get_num_vocabulary_size (line 30) | def get_num_vocabulary_size(self) -> int:
method ids2tokens (line 33) | def ids2tokens(self, integers: Union[np.ndarray, Iterable[int]]) -> Li...
method tokens2ids (line 40) | def tokens2ids(self, tokens: Iterable[str]) -> List[int]:
function split_to_mini_sentence (line 44) | def split_to_mini_sentence(words: list, word_limit: int = 20):
function code_mix_split_words (line 58) | def code_mix_split_words(text: str):
function read_yaml (line 79) | def read_yaml(yaml_path: Union[str, Path]) -> Dict:
FILE: backend/main.py
function type_text (line 29) | def type_text(text: str) -> None:
function save_audio_async (line 40) | async def save_audio_async(samples: np.ndarray, sample_rate: int, file_p...
function save_audio (line 45) | def save_audio(samples: np.ndarray, sample_rate: int, file_path: str) ->...
function process_audio_async (line 57) | async def process_audio_async(
function process_audio (line 72) | def process_audio(
function add_punctuation (line 82) | def add_punctuation(punctuator: CttPunctuator, text: str) -> str:
function ensure_data_directory (line 87) | def ensure_data_directory() -> None:
function is_device_usable (line 94) | def is_device_usable(device_index):
function create_recognizer (line 102) | def create_recognizer(args: argparse.Namespace) -> sherpa_onnx.OfflineRe...
function get_args (line 113) | def get_args() -> argparse.Namespace:
class Configurations (line 161) | class Configurations:
method __init__ (line 164) | def __init__(self, hotkey: str, microphone_index: Optional[int]):
class DeviceIndex (line 169) | class DeviceIndex(BaseModel):
class Hotkey (line 173) | class Hotkey(BaseModel):
function ping (line 182) | async def ping():
function list_audio_devices_api (line 188) | async def list_audio_devices_api() -> Dict[str, List[Dict[str, Any]]]:
function set_audio_device (line 214) | async def set_audio_device(device: DeviceIndex):
function set_hotkey_api (line 251) | async def set_hotkey_api(hotkey: Hotkey):
function get_hotkey_api (line 276) | async def get_hotkey_api():
function main (line 281) | async def main() -> None:
FILE: backend/test_api.py
function test_ping (line 5) | def test_ping():
function test_list_audio_devices (line 10) | def test_list_audio_devices():
function test_set_audio_device (line 17) | def test_set_audio_device(index):
function test_set_hotkey (line 29) | def test_set_hotkey(hotkey):
function test_get_hotkey (line 41) | def test_get_hotkey():
function test_error_cases (line 46) | def test_error_cases():
FILE: frontend/src/VoiceRecognitionIcon.tsx
type VoiceRecognitionIconProps (line 6) | interface VoiceRecognitionIconProps {
FILE: frontend/src/components/ui/badge.tsx
type BadgeProps (line 26) | interface BadgeProps
function Badge (line 30) | function Badge({ className, variant, ...props }: BadgeProps) {
FILE: frontend/src/components/ui/button.tsx
type ButtonProps (line 36) | interface ButtonProps
FILE: frontend/src/i18n.ts
type Language (line 1) | type Language = 'English' | '日本語' | '简体中文';
FILE: frontend/src/lib/utils.ts
function cn (line 4) | function cn(...inputs: ClassValue[]) {
FILE: frontend/src/main.ts
constant DEBOUNCE_TIME (line 33) | const DEBOUNCE_TIME = 300;
type ServerStatus (line 47) | type ServerStatus = 'error' | 'starting' | 'running';
function isPortAvailable (line 55) | async function isPortAvailable(port: number): Promise<boolean> {
function convertHotkeyForServer (line 64) | function convertHotkeyForServer(hotkey: string): string {
function killAllSayKeyProcesses (line 72) | function killAllSayKeyProcesses(): Promise<void> {
function isDevelopment (line 92) | function isDevelopment() {
function startBackendService (line 96) | async function startBackendService() {
function loadSettings (line 192) | function loadSettings() {
function saveSettings (line 206) | function saveSettings() {
function fetchAudioDevices (line 212) | async function fetchAudioDevices() {
function changeLanguage (line 228) | function changeLanguage(lang: Language) {
type HotkeyResponse (line 238) | type HotkeyResponse = {
function changeShortcut (line 244) | async function changeShortcut(newShortcut: string) {
function convertServerHotkeyToElectron (line 270) | function convertServerHotkeyToElectron(serverHotkey: string): string {
function getMenuTemplate (line 279) | function getMenuTemplate(): Electron.MenuItemConstructorOptions[] {
function changeMicrophone (line 430) | async function changeMicrophone(index: number) {
function setupContextMenu (line 446) | function setupContextMenu() {
function createWindow (line 465) | async function createWindow() {
function updateAlwaysOnTop (line 521) | function updateAlwaysOnTop() {
function createTray (line 527) | function createTray() {
function updateTrayMenu (line 547) | function updateTrayMenu() {
function registerGlobalShortcut (line 555) | function registerGlobalShortcut() {
function checkServerStatus (line 602) | async function checkServerStatus() {
function updateContextMenu (line 637) | function updateContextMenu() {
function startMicrophoneCheck (line 644) | function startMicrophoneCheck() {
function stopMicrophoneCheck (line 654) | function stopMicrophoneCheck() {
function createLogWindow (line 664) | function createLogWindow() {
function getCurrentHotkey (line 785) | async function getCurrentHotkey() {
function restartBackendService (line 800) | function restartBackendService() {
FILE: frontend/src/preload.ts
type MediaDeviceInfo (line 5) | interface MediaDeviceInfo {
FILE: frontend/src/renderer.tsx
type Window (line 10) | interface Window {
function App (line 36) | function App() {
Condensed preview — 58 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (518K chars).
[
{
"path": ".gitattributes",
"chars": 136,
"preview": "backend/punc-onnx/punc.onnx filter=lfs diff=lfs merge=lfs -text\nbackend/sherpa-onnx/model.int8.onnx filter=lfs diff=lfs "
},
{
"path": ".gitignore",
"chars": 69,
"preview": "\n.idea/\nSayKey-v1.0.0\nSayKey\nSayKey-v1.0.0.zip\nSayKey.zip\ndata\n*.wav\n"
},
{
"path": "LICENSE.txt",
"chars": 1118,
"preview": "The MIT License (MIT)\n\nCopyright (c) 2014-2017 Alexey Popravka\nCopyright (c) 2021 Sean Stewart\n\nPermission is hereby gra"
},
{
"path": "backend/.gitignore",
"chars": 50,
"preview": "\nvenv/\n\n\nbuild/\ndist/\n*.spec\n\n.idea/\n\ndata/\n*.wav\n"
},
{
"path": "backend/CT-Transformer-punctuation/.flake8",
"chars": 414,
"preview": "[flake8]\nshow-source=true\nstatistics=true\nmax-line-length = 108\nper-file-ignores =\n # line too long\n runtime/src/u"
},
{
"path": "backend/CT-Transformer-punctuation/.gitignore",
"chars": 3091,
"preview": "*.bin\n*.onnx\n\n# Byte-compiled / optimized / DLL files\n__pycache__/\n*.py[cod]\n*$py.class\n\n# C extensions\n*.so\n\n# Distribu"
},
{
"path": "backend/CT-Transformer-punctuation/LICENSE",
"chars": 1118,
"preview": "The MIT License (MIT)\n\nCopyright (c) 2014-2017 Alexey Popravka\nCopyright (c) 2021 Sean Stewart\n\nPermission is hereby gra"
},
{
"path": "backend/CT-Transformer-punctuation/MANIFEST.in",
"chars": 131,
"preview": "include cttpunctuator/src/onnx/configuration.json\ninclude cttpunctuator/src/onnx/punc.onnx\ninclude cttpunctuator/src/onn"
},
{
"path": "backend/CT-Transformer-punctuation/README.md",
"chars": 6195,
"preview": "\n\n<br/>\n<h2 align=\"center\">Ctt punctuator</h2>\n<br/>\n\n\n\n!"
},
{
"path": "backend/CT-Transformer-punctuation/cttPunctuator.py",
"chars": 2301,
"preview": "# -*- coding:utf-8 -*-\n# @FileName :ctt-punctuator.py\n# @Time :2023/4/13 15:03\n# @Author :lovemefan\n# @Email "
},
{
"path": "backend/CT-Transformer-punctuation/cttpunctuator/__init__.py",
"chars": 142,
"preview": "# -*- coding:utf-8 -*-\n# @FileName :__init__.py.py\n# @Time :2023/4/13 14:58\n# @Author :lovemefan\n# @Email :"
},
{
"path": "backend/CT-Transformer-punctuation/cttpunctuator/src/onnx/configuration.json",
"chars": 449,
"preview": "{\n \"framework\": \"onnx\",\n \"task\" : \"punctuation\",\n \"model\" : {\n \"type\" : \"generic-punc\",\n \"punc_model_name\" : \"p"
},
{
"path": "backend/CT-Transformer-punctuation/cttpunctuator/src/punctuator.py",
"chars": 12966,
"preview": "import logging\nimport os.path\nimport pickle\nfrom pathlib import Path\nfrom typing import Tuple, Union\n\nimport numpy as np"
},
{
"path": "backend/CT-Transformer-punctuation/cttpunctuator/src/utils/OrtInferSession.py",
"chars": 3483,
"preview": "# -*- coding:utf-8 -*-\n# @FileName :OrtInferSession.py\n# @Time :2023/4/13 15:13\n# @Author :lovemefan\n# @Email "
},
{
"path": "backend/CT-Transformer-punctuation/cttpunctuator/src/utils/text_post_process.py",
"chars": 2539,
"preview": "# -*- coding:utf-8 -*-\n# @FileName :text_post_process.py\n# @Time :2023/4/13 15:09\n# @Author :lovemefan\n# @Email"
},
{
"path": "backend/CT-Transformer-punctuation/setup.py",
"chars": 2154,
"preview": "# -*- coding:utf-8 -*-\n# @FileName :setup.py\n# @Time :2023/4/4 11:22\n# @Author :lovemefan\n# @Email :lovemef"
},
{
"path": "backend/CT-Transformer-punctuation/test/test.py",
"chars": 991,
"preview": "# -*- coding:utf-8 -*-\n# @FileName :test.py.py\n# @Time :2023/4/19 13:39\n# @Author :lovemefan\n# @Email :love"
},
{
"path": "backend/CT-Transformer-punctuation/test/test2.py",
"chars": 856,
"preview": "from cttPunctuator import CttPunctuator\nimport logging\nlogging.basicConfig(\n level=logging.INFO,\n format=\"[%(ascti"
},
{
"path": "backend/CT-Transformer-punctuation/version.txt",
"chars": 6,
"preview": "0.0.3\n"
},
{
"path": "backend/build_onefile.bat",
"chars": 2115,
"preview": "@echo off\nREM Optimized Build Script for SayKey using PyInstaller on Windows 11\n\nREM Set the path to your virtual enviro"
},
{
"path": "backend/main.py",
"chars": 12301,
"preview": "#!/usr/bin/env python3\n# -*- coding: utf-8 -*-\n# Author: WenJing Wu\n\nimport argparse\nimport asyncio\nimport os\nimport wav"
},
{
"path": "backend/punc-onnx/configuration.json",
"chars": 449,
"preview": "{\n \"framework\": \"onnx\",\n \"task\" : \"punctuation\",\n \"model\" : {\n \"type\" : \"generic-punc\",\n \"punc_model_name\" : \"p"
},
{
"path": "backend/punc-onnx/punc.onnx",
"chars": 134,
"preview": "version https://git-lfs.github.com/spec/v1\noid sha256:ed5318d91ff9520a03a5b5a8dba264b76858931db7d914b0de6ec9e4ad35970e\ns"
},
{
"path": "backend/readme.md",
"chars": 1276,
"preview": "### Init\n\n```bash\n cd ./backend\n cd CT-Transformer-punctuation\n pip install -e .\n pip install -r requirements.tx"
},
{
"path": "backend/requirements.txt",
"chars": 1125,
"preview": "altgraph==0.17.4\nannotated-types==0.7.0\nanyio==4.6.0\ncertifi==2024.8.30\ncffi==1.17.1\ncharset-normalizer==3.4.0\nclick==8."
},
{
"path": "backend/requirements_test.txt",
"chars": 53,
"preview": "altgraph==0.17.4\nannotated-types==0.7.0\nanyio==4.6.0\n"
},
{
"path": "backend/sherpa-onnx/model.int8.onnx",
"chars": 134,
"preview": "version https://git-lfs.github.com/spec/v1\noid sha256:c71f0ce00bec95b07744e116345e33d8cbbe08cef896382cf907bf4b51a2cd51\ns"
},
{
"path": "backend/sherpa-onnx/tokens.txt",
"chars": 254654,
"preview": "<unk> 0\n<s> 1\n</s> 2\n▁the 3\ns 4\n▁to 5\n▁and 6\n▁of 7\n▁a 8\n' 9\n▁in 10\n▁I 11\n▁that 12\n▁is 13\n▁you 14\n▁it 15\nt 16\n▁for 17\n▁we"
},
{
"path": "backend/test_api.py",
"chars": 3232,
"preview": "# test_api.py\n\nimport requests\n\ndef test_ping():\n print('Testing /ping endpoint...')\n response = requests.get('htt"
},
{
"path": "frontend/.gitignore",
"chars": 69,
"preview": "/node_modules\n\n/dist\n/build\n\n.next\nout\nrelease\n\n.idea/\n\n*.tmp\n*.temp\n"
},
{
"path": "frontend/components.json",
"chars": 354,
"preview": "{\n \"$schema\": \"https://ui.shadcn.com/schema.json\",\n \"style\": \"default\",\n \"rsc\": false,\n \"tsx\": true,\n \"ta"
},
{
"path": "frontend/index.html",
"chars": 717,
"preview": "<!DOCTYPE html>\n<html>\n <head>\n <meta charset=\"UTF-8\" />\n <title>SayKey</title>\n <link rel=\"icon\" href=\"favico"
},
{
"path": "frontend/package.json",
"chars": 1990,
"preview": "{\n \"name\": \"SayKey\",\n \"productName\": \"SayKey\",\n \"version\": \"1.0.1\",\n \"description\": \"SayKey\",\n \"main\": \"dist/main.j"
},
{
"path": "frontend/postcss.config.js",
"chars": 80,
"preview": "module.exports = {\n plugins: {\n tailwindcss: {},\n autoprefixer: {},\n }\n}"
},
{
"path": "frontend/readme.md",
"chars": 163,
"preview": "\n ```bash\n # Install\n cd ./frontend\n npm install\n # Start\n npm run build\n npm start\n # Build exe\n npm "
},
{
"path": "frontend/src/VoiceRecognitionIcon.tsx",
"chars": 10525,
"preview": "import React, {useState, useEffect, useCallback, useRef} from \"react\";\nimport {motion, AnimatePresence} from \"framer-mot"
},
{
"path": "frontend/src/components/ui/badge.tsx",
"chars": 1128,
"preview": "import * as React from \"react\"\nimport { cva, type VariantProps } from \"class-variance-authority\"\n\nimport { cn } from \"@/"
},
{
"path": "frontend/src/components/ui/button.tsx",
"chars": 1820,
"preview": "import * as React from \"react\"\nimport { Slot } from \"@radix-ui/react-slot\"\nimport { cva, type VariantProps } from \"class"
},
{
"path": "frontend/src/components/ui/card.tsx",
"chars": 1877,
"preview": "import * as React from \"react\"\n\nimport { cn } from \"@/lib/utils\"\n\nconst Card = React.forwardRef<\n HTMLDivElement,\n Rea"
},
{
"path": "frontend/src/components/ui/hover-card.tsx",
"chars": 1184,
"preview": "import * as React from \"react\"\nimport * as HoverCardPrimitive from \"@radix-ui/react-hover-card\"\n\nimport { cn } from \"@/l"
},
{
"path": "frontend/src/components/ui/scroll-area.tsx",
"chars": 1642,
"preview": "import * as React from \"react\"\nimport * as ScrollAreaPrimitive from \"@radix-ui/react-scroll-area\"\n\nimport { cn } from \"@"
},
{
"path": "frontend/src/components/ui/tabs.tsx",
"chars": 1883,
"preview": "import * as React from \"react\"\nimport * as TabsPrimitive from \"@radix-ui/react-tabs\"\n\nimport { cn } from \"@/lib/utils\"\n\n"
},
{
"path": "frontend/src/components/ui/tooltip.tsx",
"chars": 1145,
"preview": "import * as React from \"react\"\nimport * as TooltipPrimitive from \"@radix-ui/react-tooltip\"\n\nimport { cn } from \"@/lib/ut"
},
{
"path": "frontend/src/favicon/site.webmanifest",
"chars": 276,
"preview": "{\"background_color\":\"#ffffff\",\"display\":\"standalone\",\"icons\":[{\"sizes\":\"192x192\",\"src\":\"/android-chrome-192x192.png\",\"ty"
},
{
"path": "frontend/src/globals.css",
"chars": 1685,
"preview": "@tailwind base;\n@tailwind components;\n@tailwind utilities;\n \n@layer base {\n :root {\n --background: 0 0% 100%;\n --"
},
{
"path": "frontend/src/i18n.ts",
"chars": 2843,
"preview": "type Language = 'English' | '日本語' | '简体中文';\n\nconst translations: Record<Language, Record<string, string>> = {\n 'Engli"
},
{
"path": "frontend/src/index.html",
"chars": 717,
"preview": "<!DOCTYPE html>\n<html>\n <head>\n <meta charset=\"UTF-8\" />\n <title>SayKey</title>\n <link rel=\"icon\" href=\"favico"
},
{
"path": "frontend/src/lib/utils.ts",
"chars": 165,
"preview": "import { type ClassValue, clsx } from \"clsx\"\nimport { twMerge } from \"tailwind-merge\"\n\nexport function cn(...inputs: Cla"
},
{
"path": "frontend/src/log.html",
"chars": 18150,
"preview": "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n\t<meta charset=\"UTF-8\">\n\t<meta name=\"viewport\" content=\"width=device-width, init"
},
{
"path": "frontend/src/main.ts",
"chars": 24457,
"preview": "// main.ts\nimport {\n app,\n BrowserWindow,\n screen,\n Tray,\n Menu,\n globalShortcut,\n ipcMain,\n Men"
},
{
"path": "frontend/src/preload.ts",
"chars": 3289,
"preview": "// preload.ts\nimport {contextBridge, ipcRenderer} from 'electron';\nimport {Language} from './i18n';\n\ninterface MediaDevi"
},
{
"path": "frontend/src/renderer.tsx",
"chars": 7864,
"preview": "// renderer.tsx\nimport React, {useEffect, useState, useRef, useCallback} from 'react';\nimport ReactDOM from 'react-dom';"
},
{
"path": "frontend/src/styles.css",
"chars": 58,
"preview": "@tailwind base;\n@tailwind components;\n@tailwind utilities;"
},
{
"path": "frontend/tailwind.config.js",
"chars": 2686,
"preview": "/** @type {import('tailwindcss').Config} */\nmodule.exports = {\n darkMode: [\"class\"],\n content: [\n './src/**/*"
},
{
"path": "frontend/tsconfig.json",
"chars": 509,
"preview": "{\n \"compilerOptions\": {\n \"target\": \"ES6\",\n \"module\": \"CommonJS\",\n \"moduleResolution\": \"node\",\n \"s"
},
{
"path": "frontend/webpack.config.js",
"chars": 963,
"preview": "const path = require('path');\nconst CopyWebpackPlugin = require('copy-webpack-plugin');\n\nmodule.exports = {\n mode: 'pro"
},
{
"path": "readme.md",
"chars": 6619,
"preview": "# SayKey \n\n[简体中文](./readme_zh.md)|English\n\nSayKey is a tool that turns your speech into text. It works fast, accurately,"
},
{
"path": "readme_zh.md",
"chars": 4802,
"preview": "# SayKey \n\n简体中文|[English](./readme.md)\n\nSayKey 是一个语音输入法,为你提供快速、准确、完全离线的语音转文字体验。由 [SenseVoice](https://github.com/FunAudi"
}
]
About this extraction
This page contains the full source code of the WenJing95/SayKey GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 58 files (403.7 KB), approximately 206.8k tokens, and a symbol index with 94 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.
Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.