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 ================================================

Ctt punctuator


![python3.7](https://img.shields.io/badge/python-3.7-green.svg) ![python3.8](https://img.shields.io/badge/python-3.8-green.svg) ![python3.9](https://img.shields.io/badge/python-3.9-green.svg) ![python3.10](https://img.shields.io/badge/python-3.10-green.svg) A enterprise-grade Chinese-English code switch punctuator [funasr](https://github.com/alibaba-damo-academy/FunASR/).

Key Features


- **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.] 据报道,纽约时报使用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.] Partial: 跨境河流是养育沿岸 [2023-04-19 01:13:12,508 INFO] [ctt-punctuator.py:77 ctt-punctuator.] Partial: 跨境河流是养育沿岸人民的生命之源。长期以来,为帮助下游地区防灾减灾中方技术人员 [2023-04-19 01:13:12,521 INFO] [ctt-punctuator.py:77 ctt-punctuator.] Partial: 跨境河流是养育沿岸人民的生命之源。长期以来,为帮助下游地区防灾减灾中方技术人员在上游地区极为恶劣的自然条件下克服巨大困难,甚至冒着生命危险 [2023-04-19 01:13:12,547 INFO] [ctt-punctuator.py:77 ctt-punctuator.] Partial: 跨境河流是养育沿岸人民的生命之源。长期以来,为帮助下游地区防灾减灾中方技术人员在上游地区极为恶劣的自然条件下克服巨大困难,甚至冒着生命危险,向印方提供汛期水文资料处理紧急事件。中方重视印方在跨境河流>问题上的关切 [2023-04-19 01:13:12,553 INFO] [ctt-punctuator.py:77 ctt-punctuator.] Partial: 跨境河流是养育沿岸人民的生命之源。长期以来,为帮助下游地区防灾减灾中方技术人员在上游地区极为恶劣的自然条件下克服巨大困难,甚至冒着生命危险,向印方提供汛期水文资料处理紧急事件。中方重视印方在跨境河流>问题上的关切,愿意进一步完善双方联合工作机制 [2023-04-19 01:13:12,559 INFO] [ctt-punctuator.py:77 ctt-punctuator.] Partial: 跨境河流是养育沿岸人民的生命之源。长期以来,为帮助下游地区防灾减灾中方技术人员在上游地区极为恶劣的自然条件下克服巨大困难,甚至冒着生命危险,向印方提供汛期水文资料处理紧急事件。中方重视印方在跨境河流>问题上的关切,愿意进一步完善双方联合工作机制。凡是 [2023-04-19 01:13:12,560 INFO] [ctt-punctuator.py:77 ctt-punctuator.] Partial: 跨境河流是养育沿岸人民的生命之源。长期以来,为帮助下游地区防灾减灾中方技术人员在上游地区极为恶劣的自然条件下克服巨大困难,甚至冒着生命危险,向印方提供汛期水文资料处理紧急事件。中方重视印方在跨境河流>问题上的关切,愿意进一步完善双方联合工作机制。凡是中方能做的,我们 [2023-04-19 01:13:12,567 INFO] [ctt-punctuator.py:77 ctt-punctuator.] Partial: 跨境河流是养育沿岸人民的生命之源。长期以来,为帮助下游地区防灾减灾中方技术人员在上游地区极为恶劣的自然条件下克服巨大困难,甚至冒着生命危险,向印方提供汛期水文资料处理紧急事件。中方重视印方在跨境河流>问题上的关切,愿意进一步完善双方联合工作机制。凡是中方能做的,我们都会去做,而且会做得更好。我请印度朋友们放心,中国在上游的 [2023-04-19 01:13:12,572 INFO] [ctt-punctuator.py:77 ctt-punctuator.] Partial: 跨境河流是养育沿岸人民的生命之源。长期以来,为帮助下游地区防灾减灾中方技术人员在上游地区极为恶劣的自然条件下克服巨大困难,甚至冒着生命危险,向印方提供汛期水文资料处理紧急事件。中方重视印方在跨境河流>问题上的关切,愿意进一步完善双方联合工作机制。凡是中方能做的,我们都会去做,而且会做得更好。我请印度朋友们放心,中国在上游的任何开发利用,都会经过科学 [2023-04-19 01:13:12,578 INFO] [ctt-punctuator.py:77 ctt-punctuator.] Partial: 跨境河流是养育沿岸人民的生命之源。长期以来,为帮助下游地区防灾减灾中方技术人员在上游地区极为恶劣的自然条件下克服巨大困难,甚至冒着生命危险,向印方提供汛期水文资料处理紧急事件。中方重视印方在跨境河流>问题上的关切,愿意进一步完善双方联合工作机制。凡是中方能做的,我们都会去做,而且会做得更好。我请印度朋友们放心,中国在上游的任何开发利用,都会经过科学规划和论证,兼顾上下游的利益 [2023-04-19 01:13:12,578 INFO] [ctt-punctuator.py:79 ctt-punctuator.] 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 ================================================ 0 1 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 宰 11824 害 11825 宴 11826 宵 11827 家 11828 宸 11829 容 11830 宽 11831 宾 11832 宿 11833 寂 11834 寄 11835 寅 11836 密 11837 寇 11838 富 11839 寐 11840 寒 11841 寓 11842 寔 11843 寕 11844 寖 11845 寛 11846 寝 11847 寞 11848 察 11849 寠 11850 寡 11851 寢 11852 寤 11853 寥 11854 實 11855 寧 11856 寨 11857 審 11858 寫 11859 寬 11860 寮 11861 寰 11862 寳 11863 寵 11864 寶 11865 寸 11866 对 11867 寺 11868 寻 11869 导 11870 対 11871 寿 11872 封 11873 専 11874 射 11875 尅 11876 将 11877 將 11878 專 11879 尉 11880 尊 11881 尋 11882 對 11883 導 11884 小 11885 少 11886 尓 11887 尔 11888 尕 11889 尖 11890 尘 11891 尙 11892 尚 11893 尝 11894 尞 11895 尠 11896 尡 11897 尢 11898 尤 11899 尥 11900 尧 11901 尨 11902 尪 11903 尬 11904 尭 11905 尰 11906 就 11907 尴 11908 尷 11909 尸 11910 尹 11911 尺 11912 尻 11913 尼 11914 尽 11915 尾 11916 尿 11917 局 11918 屁 11919 层 11920 屄 11921 居 11922 屆 11923 屈 11924 屉 11925 届 11926 屋 11927 屌 11928 屍 11929 屎 11930 屏 11931 屐 11932 屑 11933 屓 11934 展 11935 屘 11936 屙 11937 屜 11938 属 11939 屠 11940 屡 11941 屢 11942 屣 11943 層 11944 履 11945 屦 11946 屬 11947 屯 11948 山 11949 屹 11950 屺 11951 屿 11952 岀 11953 岁 11954 岂 11955 岈 11956 岌 11957 岍 11958 岐 11959 岑 11960 岔 11961 岕 11962 岖 11963 岗 11964 岘 11965 岙 11966 岚 11967 岛 11968 岜 11969 岞 11970 岡 11971 岢 11972 岨 11973 岩 11974 岫 11975 岬 11976 岭 11977 岱 11978 岳 11979 岵 11980 岷 11981 岸 11982 岻 11983 岼 11984 岽 11985 岿 11986 峁 11987 峄 11988 峅 11989 峇 11990 峋 11991 峒 11992 峙 11993 峠 11994 峡 11995 峣 11996 峤 11997 峥 11998 峦 11999 峨 12000 峪 12001 峭 12002 峯 12003 峰 12004 島 12005 峻 12006 峽 12007 崂 12008 崃 12009 崆 12010 崇 12011 崋 12012 崎 12013 崐 12014 崑 12015 崒 12016 崔 12017 崕 12018 崖 12019 崗 12020 崙 12021 崚 12022 崛 12023 崞 12024 崟 12025 崢 12026 崤 12027 崦 12028 崧 12029 崩 12030 崭 12031 崮 12032 崴 12033 崽 12034 崾 12035 嵂 12036 嵇 12037 嵊 12038 嵋 12039 嵌 12040 嵎 12041 嵐 12042 嵒 12043 嵖 12044 嵘 12045 嵛 12046 嵜 12047 嵨 12048 嵩 12049 嵪 12050 嵫 12051 嵬 12052 嵯 12053 嵴 12054 嶂 12055 嶃 12056 嶄 12057 嶇 12058 嶋 12059 嶌 12060 嶓 12061 嶖 12062 嶙 12063 嶝 12064 嶬 12065 嶮 12066 嶷 12067 嶺 12068 嶼 12069 嶽 12070 巂 12071 巅 12072 巇 12073 巉 12074 巌 12075 巍 12076 巒 12077 巓 12078 巖 12079 川 12080 州 12081 巡 12082 巢 12083 巣 12084 工 12085 左 12086 巧 12087 巨 12088 巩 12089 巫 12090 差 12091 巯 12092 己 12093 已 12094 巳 12095 巴 12096 巵 12097 巷 12098 巺 12099 巻 12100 巽 12101 巾 12102 巿 12103 帀 12104 币 12105 市 12106 布 12107 帅 12108 帆 12109 师 12110 希 12111 帏 12112 帐 12113 帑 12114 帔 12115 帕 12116 帖 12117 帘 12118 帙 12119 帚 12120 帛 12121 帜 12122 帝 12123 帥 12124 带 12125 帧 12126 師 12127 席 12128 帮 12129 帯 12130 帰 12131 帳 12132 帶 12133 帷 12134 常 12135 帻 12136 帼 12137 帽 12138 幀 12139 幂 12140 幄 12141 幅 12142 幇 12143 幌 12144 幔 12145 幕 12146 幗 12147 幛 12148 幟 12149 幡 12150 幢 12151 幣 12152 幫 12153 干 12154 平 12155 年 12156 并 12157 幷 12158 幸 12159 幹 12160 幺 12161 幻 12162 幼 12163 幽 12164 幾 12165 广 12166 庁 12167 広 12168 庄 12169 庅 12170 庆 12171 庇 12172 床 12173 序 12174 庐 12175 庑 12176 库 12177 应 12178 底 12179 庖 12180 店 12181 庙 12182 庚 12183 府 12184 庞 12185 废 12186 庠 12187 度 12188 座 12189 庫 12190 庭 12191 庵 12192 庶 12193 康 12194 庸 12195 庹 12196 庾 12197 廁 12198 廂 12199 廃 12200 廆 12201 廈 12202 廉 12203 廊 12204 廋 12205 廑 12206 廓 12207 廖 12208 廚 12209 廛 12210 廝 12211 廟 12212 廠 12213 廢 12214 廣 12215 廨 12216 廪 12217 廬 12218 廳 12219 廴 12220 延 12221 廷 12222 建 12223 廻 12224 廼 12225 廿 12226 开 12227 弁 12228 异 12229 弃 12230 弄 12231 弇 12232 弈 12233 弉 12234 弊 12235 弋 12236 式 12237 弐 12238 弑 12239 弓 12240 弔 12241 引 12242 弖 12243 弗 12244 弘 12245 弛 12246 弟 12247 张 12248 弢 12249 弥 12250 弦 12251 弧 12252 弨 12253 弩 12254 弭 12255 弯 12256 弱 12257 張 12258 強 12259 弹 12260 强 12261 弼 12262 弾 12263 彀 12264 彅 12265 彆 12266 彈 12267 彊 12268 彌 12269 彎 12270 彑 12271 归 12272 当 12273 录 12274 彖 12275 彗 12276 彘 12277 彙 12278 彝 12279 彟 12280 彡 12281 形 12282 彤 12283 彥 12284 彦 12285 彧 12286 彩 12287 彪 12288 彫 12289 彬 12290 彭 12291 彰 12292 影 12293 彳 12294 彷 12295 役 12296 彺 12297 彻 12298 彼 12299 彿 12300 往 12301 征 12302 徂 12303 徃 12304 径 12305 待 12306 徇 12307 很 12308 徉 12309 徊 12310 律 12311 後 12312 徍 12313 徐 12314 徑 12315 徒 12316 従 12317 徕 12318 得 12319 徘 12320 徙 12321 徜 12322 從 12323 徠 12324 御 12325 徨 12326 復 12327 循 12328 徬 12329 徭 12330 微 12331 徳 12332 徴 12333 徵 12334 德 12335 徹 12336 徼 12337 徽 12338 心 12339 忄 12340 必 12341 忆 12342 忋 12343 忌 12344 忍 12345 忏 12346 忐 12347 忑 12348 忒 12349 忖 12350 志 12351 忘 12352 忙 12353 応 12354 忝 12355 忠 12356 忡 12357 忤 12358 忧 12359 忪 12360 快 12361 忰 12362 忱 12363 念 12364 忸 12365 忻 12366 忽 12367 忾 12368 忿 12369 怀 12370 态 12371 怂 12372 怃 12373 怄 12374 怅 12375 怆 12376 怍 12377 怎 12378 怏 12379 怒 12380 怔 12381 怕 12382 怖 12383 怗 12384 怙 12385 怛 12386 怜 12387 思 12388 怠 12389 怡 12390 急 12391 怦 12392 性 12393 怨 12394 怩 12395 怪 12396 怫 12397 怯 12398 怱 12399 怵 12400 怹 12401 总 12402 怼 12403 怿 12404 恁 12405 恂 12406 恃 12407 恆 12408 恋 12409 恍 12410 恐 12411 恒 12412 恓 12413 恕 12414 恙 12415 恚 12416 恟 12417 恢 12418 恣 12419 恤 12420 恥 12421 恨 12422 恩 12423 恪 12424 恫 12425 恬 12426 恭 12427 息 12428 恰 12429 恳 12430 恵 12431 恶 12432 恸 12433 恹 12434 恺 12435 恻 12436 恼 12437 恽 12438 恿 12439 悃 12440 悄 12441 悅 12442 悆 12443 悉 12444 悋 12445 悌 12446 悍 12447 悒 12448 悔 12449 悕 12450 悖 12451 悚 12452 悛 12453 悝 12454 悟 12455 悠 12456 患 12457 悦 12458 悧 12459 您 12460 悩 12461 悪 12462 悫 12463 悬 12464 悭 12465 悯 12466 悱 12467 悲 12468 悳 12469 悴 12470 悵 12471 悶 12472 悸 12473 悻 12474 悼 12475 悽 12476 情 12477 惆 12478 惇 12479 惊 12480 惋 12481 惎 12482 惑 12483 惕 12484 惘 12485 惙 12486 惚 12487 惜 12488 惟 12489 惠 12490 惡 12491 惣 12492 惦 12493 惧 12494 惨 12495 惩 12496 惫 12497 惬 12498 惭 12499 惮 12500 惯 12501 惰 12502 惱 12503 想 12504 惴 12505 惶 12506 惹 12507 惺 12508 惻 12509 愀 12510 愁 12511 愆 12512 愇 12513 愈 12514 愉 12515 愊 12516 愍 12517 愎 12518 意 12519 愔 12520 愕 12521 愚 12522 愛 12523 感 12524 愠 12525 愣 12526 愤 12527 愦 12528 愧 12529 愫 12530 愬 12531 愴 12532 愷 12533 愼 12534 愾 12535 愿 12536 慂 12537 慄 12538 慆 12539 慇 12540 慈 12541 慊 12542 態 12543 慌 12544 慎 12545 慑 12546 慓 12547 慕 12548 慘 12549 慙 12550 慚 12551 慜 12552 慝 12553 慟 12554 慢 12555 慣 12556 慥 12557 慧 12558 慨 12559 慫 12560 慮 12561 慰 12562 慳 12563 慴 12564 慵 12565 慶 12566 慷 12567 慾 12568 憂 12569 憊 12570 憋 12571 憍 12572 憎 12573 憐 12574 憑 12575 憔 12576 憖 12577 憙 12578 憚 12579 憤 12580 憧 12581 憨 12582 憩 12583 憫 12584 憬 12585 憮 12586 憲 12587 憶 12588 憷 12589 憺 12590 憾 12591 懂 12592 懃 12593 懆 12594 懇 12595 懈 12596 應 12597 懊 12598 懋 12599 懐 12600 懑 12601 懒 12602 懣 12603 懦 12604 懲 12605 懵 12606 懶 12607 懷 12608 懸 12609 懺 12610 懼 12611 懾 12612 懿 12613 戀 12614 戆 12615 戇 12616 戈 12617 戊 12618 戌 12619 戍 12620 戎 12621 戏 12622 成 12623 我 12624 戒 12625 戔 12626 戕 12627 或 12628 戗 12629 战 12630 戚 12631 戛 12632 戞 12633 戟 12634 戡 12635 戢 12636 戥 12637 戦 12638 截 12639 戬 12640 戮 12641 戯 12642 戰 12643 戲 12644 戳 12645 戴 12646 戶 12647 户 12648 戸 12649 戻 12650 戽 12651 戾 12652 房 12653 所 12654 扁 12655 扃 12656 扆 12657 扇 12658 扈 12659 扉 12660 手 12661 才 12662 扎 12663 扐 12664 扑 12665 扒 12666 打 12667 扔 12668 払 12669 托 12670 扛 12671 扞 12672 扠 12673 扣 12674 扤 12675 扥 12676 扦 12677 执 12678 扨 12679 扩 12680 扪 12681 扫 12682 扬 12683 扭 12684 扮 12685 扯 12686 扰 12687 扱 12688 扳 12689 扶 12690 批 12691 扼 12692 找 12693 承 12694 技 12695 抃 12696 抄 12697 抅 12698 抉 12699 把 12700 抌 12701 抑 12702 抒 12703 抓 12704 抔 12705 投 12706 抖 12707 抗 12708 折 12709 抚 12710 抛 12711 抜 12712 択 12713 抟 12714 抠 12715 抡 12716 抢 12717 护 12718 报 12719 抨 12720 披 12721 抬 12722 抱 12723 抵 12724 抹 12725 抻 12726 押 12727 抽 12728 抾 12729 抿 12730 拂 12731 拃 12732 拄 12733 担 12734 拆 12735 拇 12736 拈 12737 拉 12738 拊 12739 拋 12740 拌 12741 拍 12742 拎 12743 拐 12744 拒 12745 拓 12746 拔 12747 拖 12748 拗 12749 拘 12750 拙 12751 拚 12752 招 12753 拜 12754 拝 12755 拟 12756 拠 12757 拡 12758 拢 12759 拣 12760 拤 12761 拥 12762 拦 12763 拧 12764 拨 12765 择 12766 括 12767 拭 12768 拮 12769 拯 12770 拱 12771 拳 12772 拴 12773 拵 12774 拶 12775 拷 12776 拼 12777 拽 12778 拾 12779 拿 12780 持 12781 挂 12782 指 12783 挈 12784 按 12785 挌 12786 挎 12787 挑 12788 挒 12789 挖 12790 挙 12791 挚 12792 挛 12793 挝 12794 挞 12795 挟 12796 挠 12797 挡 12798 挢 12799 挣 12800 挤 12801 挥 12802 挨 12803 挪 12804 挫 12805 振 12806 挲 12807 挹 12808 挺 12809 挼 12810 挽 12811 挾 12812 挿 12813 捂 12814 捅 12815 捆 12816 捉 12817 捊 12818 捋 12819 捌 12820 捍 12821 捎 12822 捏 12823 捐 12824 捕 12825 捗 12826 捜 12827 捞 12828 损 12829 捡 12830 换 12831 捣 12832 捧 12833 捨 12834 捩 12835 捫 12836 捭 12837 据 12838 捯 12839 捱 12840 捲 12841 捶 12842 捷 12843 捺 12844 捻 12845 掀 12846 掂 12847 掃 12848 掇 12849 授 12850 掉 12851 掊 12852 掌 12853 掎 12854 掏 12855 掐 12856 排 12857 掕 12858 掖 12859 掘 12860 掙 12861 掛 12862 掞 12863 掟 12864 掠 12865 採 12866 探 12867 掣 12868 接 12869 控 12870 推 12871 掩 12872 措 12873 掬 12874 掮 12875 掰 12876 掲 12877 掳 12878 掴 12879 掷 12880 掸 12881 掹 12882 掺 12883 掻 12884 掼 12885 掾 12886 揀 12887 揃 12888 揄 12889 揆 12890 揈 12891 揉 12892 揍 12893 揎 12894 描 12895 提 12896 插 12897 揖 12898 揚 12899 換 12900 揞 12901 揠 12902 握 12903 揣 12904 揩 12905 揪 12906 揭 12907 揮 12908 揲 12909 援 12910 揵 12911 揶 12912 揸 12913 揺 12914 揼 12915 揽 12916 揿 12917 搀 12918 搁 12919 搂 12920 搅 12921 搆 12922 搋 12923 搌 12924 損 12925 搏 12926 搐 12927 搓 12928 搔 12929 搖 12930 搗 12931 搛 12932 搜 12933 搞 12934 搠 12935 搡 12936 搢 12937 搣 12938 搦 12939 搧 12940 搨 12941 搪 12942 搬 12943 搭 12944 搴 12945 搵 12946 搶 12947 搹 12948 携 12949 搽 12950 搾 12951 摁 12952 摂 12953 摄 12954 摅 12955 摆 12956 摇 12957 摈 12958 摊 12959 摐 12960 摒 12961 摔 12962 摘 12963 摛 12964 摞 12965 摟 12966 摧 12967 摩 12968 摭 12969 摯 12970 摵 12971 摸 12972 摹 12973 摺 12974 摽 12975 撂 12976 撃 12977 撄 12978 撅 12979 撇 12980 撈 12981 撐 12982 撑 12983 撒 12984 撓 12985 撕 12986 撖 12987 撙 12988 撚 12989 撞 12990 撤 12991 撥 12992 撩 12993 撫 12994 撬 12995 播 12996 撮 12997 撰 12998 撲 12999 撳 13000 撴 13001 撵 13002 撷 13003 撸 13004 撹 13005 撺 13006 撻 13007 撼 13008 撿 13009 擀 13010 擁 13011 擂 13012 擅 13013 擇 13014 擊 13015 擋 13016 操 13017 擎 13018 擐 13019 擒 13020 擔 13021 擗 13022 擘 13023 據 13024 擞 13025 擠 13026 擡 13027 擢 13028 擣 13029 擤 13030 擦 13031 擧 13032 擬 13033 擯 13034 擰 13035 擱 13036 擲 13037 擳 13038 擴 13039 擶 13040 擺 13041 擻 13042 擽 13043 擾 13044 攀 13045 攆 13046 攉 13047 攏 13048 攒 13049 攔 13050 攘 13051 攙 13052 攜 13053 攝 13054 攞 13055 攣 13056 攤 13057 攥 13058 攪 13059 攫 13060 攬 13061 攮 13062 支 13063 攰 13064 攴 13065 攵 13066 收 13067 攷 13068 攸 13069 改 13070 攻 13071 放 13072 政 13073 故 13074 效 13075 敉 13076 敌 13077 敍 13078 敏 13079 救 13080 敕 13081 敖 13082 敗 13083 敘 13084 教 13085 敛 13086 敝 13087 敞 13088 敢 13089 散 13090 敦 13091 敫 13092 敬 13093 数 13094 敲 13095 整 13096 敵 13097 敷 13098 數 13099 斁 13100 斂 13101 斃 13102 文 13103 斉 13104 斋 13105 斌 13106 斎 13107 斐 13108 斑 13109 斓 13110 斕 13111 斗 13112 料 13113 斛 13114 斜 13115 斝 13116 斟 13117 斡 13118 斤 13119 斥 13120 斧 13121 斩 13122 斫 13123 斬 13124 断 13125 斯 13126 新 13127 斷 13128 方 13129 於 13130 施 13131 斿 13132 旁 13133 旃 13134 旄 13135 旅 13136 旆 13137 旉 13138 旋 13139 旌 13140 旎 13141 族 13142 旒 13143 旖 13144 旗 13145 旛 13146 无 13147 既 13148 日 13149 旦 13150 旧 13151 旨 13152 早 13153 旬 13154 旭 13155 旮 13156 旯 13157 旰 13158 旱 13159 旳 13160 时 13161 旷 13162 旸 13163 旺 13164 旻 13165 旼 13166 昀 13167 昂 13168 昃 13169 昆 13170 昇 13171 昉 13172 昊 13173 昌 13174 明 13175 昏 13176 易 13177 昔 13178 昕 13179 昙 13180 昚 13181 昝 13182 昞 13183 星 13184 映 13185 春 13186 昧 13187 昨 13188 昭 13189 是 13190 昱 13191 昴 13192 昵 13193 昶 13194 昺 13195 昼 13196 显 13197 晁 13198 時 13199 晃 13200 晄 13201 晉 13202 晋 13203 晌 13204 晏 13205 晒 13206 晓 13207 晔 13208 晕 13209 晖 13210 晗 13211 晚 13212 晝 13213 晞 13214 晟 13215 晡 13216 晢 13217 晤 13218 晥 13219 晦 13220 晧 13221 晨 13222 晩 13223 晬 13224 普 13225 景 13226 晰 13227 晳 13228 晴 13229 晶 13230 晷 13231 智 13232 晻 13233 晾 13234 暁 13235 暂 13236 暄 13237 暇 13238 暈 13239 暉 13240 暌 13241 暍 13242 暎 13243 暑 13244 暖 13245 暗 13246 暘 13247 暝 13248 暢 13249 暦 13250 暧 13251 暨 13252 暫 13253 暮 13254 暲 13255 暴 13256 暹 13257 暻 13258 暼 13259 暾 13260 曄 13261 曆 13262 曇 13263 曈 13264 曉 13265 曌 13266 曖 13267 曙 13268 曚 13269 曛 13270 曜 13271 曝 13272 曠 13273 曡 13274 曦 13275 曩 13276 曬 13277 曰 13278 曱 13279 曲 13280 曳 13281 更 13282 曵 13283 曷 13284 書 13285 曹 13286 曺 13287 曼 13288 曽 13289 曾 13290 替 13291 最 13292 會 13293 月 13294 有 13295 朊 13296 朋 13297 服 13298 朏 13299 朐 13300 朓 13301 朔 13302 朕 13303 朗 13304 望 13305 朝 13306 期 13307 朦 13308 朧 13309 木 13310 未 13311 末 13312 本 13313 札 13314 朮 13315 术 13316 朱 13317 朴 13318 朵 13319 朶 13320 朸 13321 机 13322 朽 13323 朾 13324 杀 13325 杁 13326 杂 13327 权 13328 杆 13329 杈 13330 杉 13331 杌 13332 李 13333 杏 13334 材 13335 村 13336 杓 13337 杖 13338 杙 13339 杜 13340 杞 13341 束 13342 杠 13343 条 13344 杢 13345 杣 13346 杤 13347 来 13348 杨 13349 杩 13350 杪 13351 杬 13352 杭 13353 杮 13354 杯 13355 杰 13356 東 13357 杲 13358 杳 13359 杵 13360 杷 13361 杻 13362 杼 13363 松 13364 板 13365 极 13366 构 13367 枅 13368 枇 13369 枉 13370 枋 13371 枌 13372 枎 13373 析 13374 枓 13375 枕 13376 林 13377 枘 13378 枚 13379 果 13380 枝 13381 枞 13382 枠 13383 枡 13384 枢 13385 枣 13386 枥 13387 枦 13388 枧 13389 枨 13390 枪 13391 枫 13392 枭 13393 枯 13394 枰 13395 枱 13396 枲 13397 枳 13398 枴 13399 架 13400 枷 13401 枸 13402 枹 13403 柀 13404 柁 13405 柃 13406 柄 13407 柇 13408 柊 13409 柏 13410 某 13411 柑 13412 柒 13413 染 13414 柔 13415 柘 13416 柚 13417 柜 13418 柝 13419 柞 13420 柠 13421 柢 13422 柤 13423 查 13424 柧 13425 柩 13426 柬 13427 柯 13428 柰 13429 柱 13430 柳 13431 柴 13432 柵 13433 柷 13434 柸 13435 柹 13436 査 13437 柽 13438 柾 13439 柿 13440 栀 13441 栂 13442 栃 13443 栄 13444 栅 13445 标 13446 栈 13447 栉 13448 栊 13449 栋 13450 栌 13451 栎 13452 栏 13453 树 13454 栓 13455 栖 13456 栗 13457 栘 13458 栝 13459 栞 13460 栟 13461 校 13462 栢 13463 栧 13464 栩 13465 株 13466 栫 13467 栬 13468 栱 13469 栲 13470 栳 13471 栴 13472 样 13473 核 13474 根 13475 栻 13476 格 13477 栽 13478 栾 13479 桀 13480 桁 13481 桂 13482 桃 13483 桄 13484 桅 13485 框 13486 案 13487 桉 13488 桌 13489 桎 13490 桐 13491 桑 13492 桓 13493 桔 13494 桕 13495 桖 13496 桙 13497 桜 13498 桝 13499 桟 13500 桠 13501 桡 13502 桢 13503 档 13504 桤 13505 桥 13506 桦 13507 桧 13508 桨 13509 桩 13510 桫 13511 桯 13512 桴 13513 桶 13514 桷 13515 桼 13516 桾 13517 桿 13518 梁 13519 梃 13520 梅 13521 梆 13522 梈 13523 梏 13524 梓 13525 梔 13526 梗 13527 梛 13528 條 13529 梟 13530 梠 13531 梡 13532 梢 13533 梣 13534 梦 13535 梧 13536 梨 13537 梪 13538 梫 13539 梭 13540 梯 13541 械 13542 梱 13543 梳 13544 梵 13545 梶 13546 梹 13547 梺 13548 梻 13549 梼 13550 梿 13551 检 13552 棂 13553 棄 13554 棅 13555 棈 13556 棉 13557 棊 13558 棋 13559 棍 13560 棒 13561 棔 13562 棕 13563 棗 13564 棘 13565 棚 13566 棟 13567 棠 13568 棡 13569 棣 13570 棧 13571 棨 13572 棬 13573 森 13574 棯 13575 棰 13576 棱 13577 棲 13578 棵 13579 棶 13580 棷 13581 棹 13582 棺 13583 棻 13584 棼 13585 椀 13586 椁 13587 椅 13588 椈 13589 椊 13590 椋 13591 椌 13592 植 13593 椎 13594 椏 13595 椐 13596 椒 13597 椙 13598 椚 13599 椛 13600 検 13601 椟 13602 椡 13603 椣 13604 椤 13605 椥 13606 椨 13607 椪 13608 椭 13609 椰 13610 椴 13611 椹 13612 椽 13613 椿 13614 楀 13615 楂 13616 楉 13617 楊 13618 楓 13619 楔 13620 楕 13621 楗 13622 楙 13623 楚 13624 楜 13625 楝 13626 楞 13627 楠 13628 楡 13629 楢 13630 楣 13631 楦 13632 楪 13633 楫 13634 業 13635 楮 13636 楯 13637 楱 13638 楳 13639 極 13640 楷 13641 楸 13642 楹 13643 楼 13644 楽 13645 楾 13646 榁 13647 概 13648 榄 13649 榆 13650 榇 13651 榈 13652 榉 13653 榊 13654 榎 13655 榑 13656 榔 13657 榕 13658 榖 13659 榘 13660 榛 13661 榜 13662 榧 13663 榨 13664 榫 13665 榭 13666 榮 13667 榲 13668 榴 13669 榷 13670 榻 13671 榼 13672 榾 13673 榿 13674 槁 13675 槃 13676 槅 13677 槇 13678 槊 13679 構 13680 槌 13681 槍 13682 槎 13683 槐 13684 槓 13685 槖 13686 様 13687 槙 13688 槛 13689 槟 13690 槧 13691 槨 13692 槩 13693 槫 13694 槭 13695 槲 13696 槳 13697 槻 13698 槽 13699 槿 13700 樀 13701 樁 13702 樂 13703 樅 13704 樉 13705 樊 13706 樋 13707 樑 13708 樒 13709 樓 13710 樖 13711 樗 13712 樘 13713 標 13714 樛 13715 樞 13716 樟 13717 模 13718 樣 13719 樨 13720 権 13721 横 13722 樫 13723 樮 13724 樯 13725 樱 13726 樵 13727 樸 13728 樹 13729 樺 13730 樽 13731 樾 13732 橄 13733 橅 13734 橇 13735 橈 13736 橋 13737 橐 13738 橘 13739 橙 13740 橛 13741 橞 13742 機 13743 橡 13744 橢 13745 橥 13746 橦 13747 橫 13748 橱 13749 橲 13750 橹 13751 橼 13752 橿 13753 檀 13754 檄 13755 檉 13756 檍 13757 檎 13758 檐 13759 檔 13760 檗 13761 檜 13762 檞 13763 檠 13764 檢 13765 檣 13766 檩 13767 檪 13768 檫 13769 檬 13770 檮 13771 檯 13772 檳 13773 檸 13774 檻 13775 檿 13776 櫁 13777 櫂 13778 櫃 13779 櫈 13780 櫓 13781 櫚 13782 櫛 13783 櫞 13784 櫟 13785 櫧 13786 櫨 13787 櫪 13788 櫺 13789 櫻 13790 欄 13791 欅 13792 權 13793 欒 13794 欖 13795 欝 13796 欞 13797 欠 13798 次 13799 欢 13800 欣 13801 欤 13802 欧 13803 欲 13804 欷 13805 欸 13806 欹 13807 欺 13808 欻 13809 欽 13810 款 13811 歀 13812 歃 13813 歆 13814 歇 13815 歉 13816 歌 13817 歎 13818 歐 13819 歓 13820 歔 13821 歘 13822 歙 13823 歡 13824 止 13825 正 13826 此 13827 步 13828 武 13829 歧 13830 歩 13831 歪 13832 歭 13833 歯 13834 歲 13835 歳 13836 歴 13837 歷 13838 歸 13839 歹 13840 死 13841 歼 13842 歿 13843 殁 13844 殂 13845 殃 13846 殄 13847 殆 13848 殇 13849 殉 13850 殊 13851 残 13852 殍 13853 殒 13854 殓 13855 殖 13856 殘 13857 殚 13858 殛 13859 殡 13860 殪 13861 殭 13862 殮 13863 殯 13864 殲 13865 殳 13866 殴 13867 段 13868 殷 13869 殺 13870 殻 13871 殼 13872 殽 13873 殿 13874 毀 13875 毁 13876 毂 13877 毅 13878 毆 13879 毋 13880 母 13881 毎 13882 每 13883 毐 13884 毒 13885 毓 13886 比 13887 毕 13888 毖 13889 毗 13890 毘 13891 毙 13892 毛 13893 毟 13894 毡 13895 毫 13896 毬 13897 毯 13898 毳 13899 毹 13900 毽 13901 氅 13902 氆 13903 氇 13904 氈 13905 氍 13906 氏 13907 氐 13908 民 13909 氓 13910 气 13911 氕 13912 氖 13913 気 13914 氘 13915 氙 13916 氚 13917 氛 13918 氟 13919 氡 13920 氢 13921 氣 13922 氤 13923 氦 13924 氧 13925 氨 13926 氩 13927 氪 13928 氮 13929 氯 13930 氰 13931 氲 13932 水 13933 氷 13934 永 13935 氹 13936 氽 13937 氾 13938 汀 13939 汁 13940 求 13941 汆 13942 汇 13943 汈 13944 汉 13945 汊 13946 汎 13947 汐 13948 汔 13949 汕 13950 汗 13951 汚 13952 汛 13953 汜 13954 汝 13955 汞 13956 江 13957 池 13958 污 13959 汤 13960 汨 13961 汩 13962 汪 13963 汭 13964 汰 13965 汲 13966 汴 13967 汵 13968 汶 13969 汹 13970 決 13971 汽 13972 汾 13973 沁 13974 沂 13975 沃 13976 沄 13977 沅 13978 沆 13979 沈 13980 沉 13981 沌 13982 沏 13983 沐 13984 沒 13985 沓 13986 沔 13987 沖 13988 沙 13989 沚 13990 沛 13991 沟 13992 没 13993 沢 13994 沣 13995 沤 13996 沥 13997 沦 13998 沧 13999 沨 14000 沩 14001 沪 14002 沫 14003 沭 14004 沮 14005 沱 14006 河 14007 沸 14008 油 14009 治 14010 沼 14011 沽 14012 沾 14013 沿 14014 況 14015 泃 14016 泄 14017 泅 14018 泆 14019 泉 14020 泊 14021 泌 14022 泐 14023 泒 14024 泓 14025 泔 14026 法 14027 泖 14028 泗 14029 泙 14030 泚 14031 泛 14032 泞 14033 泠 14034 泡 14035 波 14036 泣 14037 泥 14038 注 14039 泪 14040 泫 14041 泬 14042 泮 14043 泯 14044 泰 14045 泱 14046 泳 14047 泵 14048 泷 14049 泸 14050 泺 14051 泻 14052 泼 14053 泽 14054 泾 14055 洁 14056 洄 14057 洇 14058 洋 14059 洌 14060 洎 14061 洏 14062 洑 14063 洒 14064 洗 14065 洙 14066 洛 14067 洞 14068 洟 14069 洣 14070 津 14071 洧 14072 洩 14073 洪 14074 洮 14075 洱 14076 洲 14077 洳 14078 洵 14079 洶 14080 洸 14081 洹 14082 洺 14083 活 14084 洼 14085 洽 14086 派 14087 洿 14088 流 14089 浃 14090 浄 14091 浅 14092 浆 14093 浇 14094 浈 14095 浉 14096 浊 14097 测 14098 浍 14099 济 14100 浏 14101 浐 14102 浑 14103 浒 14104 浓 14105 浔 14106 浙 14107 浚 14108 浛 14109 浜 14110 浞 14111 浠 14112 浣 14113 浥 14114 浦 14115 浩 14116 浪 14117 浬 14118 浮 14119 浯 14120 浴 14121 海 14122 浸 14123 浹 14124 涂 14125 涅 14126 消 14127 涉 14128 涌 14129 涎 14130 涑 14131 涓 14132 涔 14133 涕 14134 涖 14135 涘 14136 涙 14137 涛 14138 涜 14139 涝 14140 涞 14141 涟 14142 涠 14143 涡 14144 涣 14145 涤 14146 润 14147 涧 14148 涨 14149 涩 14150 涪 14151 涮 14152 涯 14153 液 14154 涵 14155 涸 14156 涼 14157 涿 14158 淀 14159 淄 14160 淅 14161 淆 14162 淇 14163 淋 14164 淌 14165 淏 14166 淑 14167 淒 14168 淖 14169 淘 14170 淙 14171 淚 14172 淜 14173 淝 14174 淞 14175 淠 14176 淡 14177 淤 14178 淦 14179 淨 14180 淪 14181 淫 14182 淬 14183 淮 14184 淯 14185 深 14186 淳 14187 淵 14188 混 14189 淸 14190 淹 14191 淺 14192 添 14193 淼 14194 渀 14195 清 14196 渇 14197 済 14198 渉 14199 渊 14200 渋 14201 渌 14202 渍 14203 渎 14204 渐 14205 渑 14206 渓 14207 渔 14208 渕 14209 渗 14210 渙 14211 渚 14212 減 14213 渝 14214 渟 14215 渠 14216 渡 14217 渣 14218 渤 14219 渥 14220 渦 14221 温 14222 渫 14223 測 14224 渭 14225 港 14226 渲 14227 渴 14228 游 14229 渺 14230 渾 14231 湃 14232 湄 14233 湉 14234 湊 14235 湍 14236 湎 14237 湓 14238 湔 14239 湖 14240 湘 14241 湛 14242 湜 14243 湝 14244 湟 14245 湣 14246 湧 14247 湫 14248 湮 14249 湯 14250 湲 14251 湴 14252 湶 14253 湾 14254 湿 14255 満 14256 溂 14257 溃 14258 溅 14259 溆 14260 溇 14261 溉 14262 溌 14263 溍 14264 溏 14265 源 14266 準 14267 溘 14268 溜 14269 溝 14270 溟 14271 溢 14272 溥 14273 溧 14274 溪 14275 溫 14276 溯 14277 溱 14278 溲 14279 溴 14280 溶 14281 溷 14282 溺 14283 溽 14284 滁 14285 滂 14286 滄 14287 滅 14288 滇 14289 滈 14290 滉 14291 滋 14292 滌 14293 滏 14294 滑 14295 滓 14296 滔 14297 滕 14298 滗 14299 滘 14300 滚 14301 滝 14302 滞 14303 滟 14304 滠 14305 满 14306 滢 14307 滤 14308 滥 14309 滦 14310 滨 14311 滩 14312 滬 14313 滯 14314 滲 14315 滴 14316 滸 14317 滹 14318 滾 14319 滿 14320 漁 14321 漂 14322 漆 14323 漈 14324 漉 14325 漏 14326 漑 14327 漓 14328 演 14329 漕 14330 漠 14331 漢 14332 漣 14333 漩 14334 漪 14335 漫 14336 漬 14337 漭 14338 漯 14339 漱 14340 漲 14341 漳 14342 漴 14343 漶 14344 漷 14345 漸 14346 漼 14347 漾 14348 漿 14349 潅 14350 潆 14351 潇 14352 潋 14353 潍 14354 潎 14355 潏 14356 潑 14357 潔 14358 潘 14359 潛 14360 潜 14361 潞 14362 潟 14363 潡 14364 潢 14365 潤 14366 潥 14367 潦 14368 潩 14369 潬 14370 潭 14371 潮 14372 潰 14373 潲 14374 潴 14375 潵 14376 潸 14377 潺 14378 潼 14379 澀 14380 澁 14381 澄 14382 澆 14383 澈 14384 澌 14385 澍 14386 澎 14387 澗 14388 澜 14389 澡 14390 澣 14391 澤 14392 澧 14393 澪 14394 澱 14395 澳 14396 澴 14397 澶 14398 澹 14399 激 14400 濁 14401 濂 14402 濃 14403 濆 14404 濉 14405 濑 14406 濒 14407 濕 14408 濘 14409 濛 14410 濞 14411 濟 14412 濠 14413 濡 14414 濤 14415 濩 14416 濫 14417 濬 14418 濮 14419 濯 14420 濱 14421 濶 14422 濺 14423 濾 14424 瀉 14425 瀋 14426 瀍 14427 瀏 14428 瀑 14429 瀕 14430 瀚 14431 瀛 14432 瀝 14433 瀞 14434 瀟 14435 瀣 14436 瀦 14437 瀧 14438 瀬 14439 瀰 14440 瀲 14441 瀹 14442 瀾 14443 灌 14444 灏 14445 灑 14446 灘 14447 灞 14448 灣 14449 火 14450 灭 14451 灯 14452 灰 14453 灵 14454 灶 14455 灸 14456 灼 14457 災 14458 灾 14459 灿 14460 炀 14461 炁 14462 炅 14463 炆 14464 炉 14465 炊 14466 炎 14467 炒 14468 炔 14469 炕 14470 炖 14471 炙 14472 炜 14473 炝 14474 炟 14475 炤 14476 炪 14477 炫 14478 炬 14479 炭 14480 炮 14481 炯 14482 炳 14483 炴 14484 炷 14485 炸 14486 点 14487 為 14488 炼 14489 炽 14490 烀 14491 烁 14492 烂 14493 烃 14494 烈 14495 烊 14496 烏 14497 烖 14498 烘 14499 烙 14500 烛 14501 烜 14502 烟 14503 烤 14504 烦 14505 烧 14506 烨 14507 烩 14508 烫 14509 烬 14510 热 14511 烯 14512 烱 14513 烷 14514 烹 14515 烽 14516 焉 14517 焊 14518 焐 14519 焓 14520 焔 14521 焕 14522 焖 14523 焗 14524 焘 14525 焙 14526 焚 14527 焜 14528 無 14529 焦 14530 焯 14531 焰 14532 焱 14533 然 14534 焼 14535 煅 14536 煉 14537 煊 14538 煋 14539 煌 14540 煎 14541 煕 14542 煖 14543 煙 14544 煜 14545 煞 14546 煟 14547 煢 14548 煤 14549 煥 14550 煦 14551 照 14552 煨 14553 煩 14554 煬 14555 煮 14556 煲 14557 煳 14558 煸 14559 煺 14560 煽 14561 煿 14562 熄 14563 熊 14564 熏 14565 熔 14566 熘 14567 熙 14568 熜 14569 熟 14570 熠 14571 熨 14572 熬 14573 熱 14574 熳 14575 熵 14576 熹 14577 熾 14578 燃 14579 燄 14580 燈 14581 燉 14582 燊 14583 燋 14584 燎 14585 燐 14586 燒 14587 燔 14588 燕 14589 燗 14590 燙 14591 燚 14592 營 14593 燠 14594 燥 14595 燦 14596 燧 14597 燭 14598 燮 14599 燵 14600 燹 14601 燻 14602 燼 14603 燿 14604 爆 14605 爍 14606 爐 14607 爛 14608 爨 14609 爪 14610 爬 14611 爭 14612 爰 14613 爱 14614 爲 14615 爵 14616 父 14617 爷 14618 爸 14619 爹 14620 爺 14621 爻 14622 爼 14623 爽 14624 爾 14625 爿 14626 牀 14627 牁 14628 牂 14629 牆 14630 片 14631 版 14632 牌 14633 牍 14634 牒 14635 牕 14636 牖 14637 牘 14638 牙 14639 牛 14640 牝 14641 牟 14642 牠 14643 牡 14644 牢 14645 牤 14646 牦 14647 牧 14648 物 14649 牮 14650 牯 14651 牲 14652 牴 14653 牵 14654 牸 14655 特 14656 牺 14657 牽 14658 牾 14659 犀 14660 犁 14661 犂 14662 犄 14663 犇 14664 犊 14665 犋 14666 犍 14667 犒 14668 犖 14669 犟 14670 犠 14671 犢 14672 犧 14673 犬 14674 犯 14675 犰 14676 犳 14677 犴 14678 状 14679 犷 14680 犸 14681 犹 14682 犼 14683 狀 14684 狂 14685 狄 14686 狆 14687 狈 14688 狌 14689 狍 14690 狎 14691 狐 14692 狒 14693 狗 14694 狙 14695 狛 14696 狝 14697 狞 14698 狠 14699 狡 14700 狢 14701 狨 14702 狩 14703 独 14704 狭 14705 狮 14706 狰 14707 狱 14708 狲 14709 狴 14710 狷 14711 狸 14712 狹 14713 狻 14714 狼 14715 狽 14716 猁 14717 猇 14718 猊 14719 猎 14720 猕 14721 猖 14722 猗 14723 猙 14724 猛 14725 猜 14726 猝 14727 猞 14728 猟 14729 猡 14730 猢 14731 猥 14732 猨 14733 猩 14734 猪 14735 猫 14736 猬 14737 献 14738 猯 14739 猱 14740 猲 14741 猴 14742 猶 14743 猷 14744 猹 14745 猾 14746 猿 14747 獄 14748 獅 14749 獎 14750 獏 14751 獐 14752 獒 14753 獗 14754 獠 14755 獣 14756 獨 14757 獪 14758 獬 14759 獭 14760 獰 14761 獲 14762 獵 14763 獸 14764 獺 14765 獻 14766 獾 14767 玄 14768 率 14769 玉 14770 王 14771 玎 14772 玑 14773 玕 14774 玖 14775 玘 14776 玙 14777 玚 14778 玛 14779 玟 14780 玠 14781 玢 14782 玥 14783 玦 14784 玩 14785 玫 14786 玮 14787 环 14788 现 14789 玲 14790 玳 14791 玷 14792 玹 14793 玺 14794 玻 14795 珀 14796 珂 14797 珅 14798 珈 14799 珉 14800 珊 14801 珍 14802 珎 14803 珏 14804 珐 14805 珑 14806 珙 14807 珜 14808 珞 14809 珠 14810 珣 14811 珥 14812 珦 14813 珧 14814 珩 14815 珪 14816 珫 14817 班 14818 珮 14819 珰 14820 珲 14821 珸 14822 珺 14823 珽 14824 現 14825 球 14826 琅 14827 理 14828 琇 14829 琉 14830 琊 14831 琍 14832 琎 14833 琏 14834 琐 14835 琚 14836 琛 14837 琢 14838 琤 14839 琥 14840 琦 14841 琨 14842 琪 14843 琬 14844 琮 14845 琯 14846 琰 14847 琲 14848 琳 14849 琴 14850 琵 14851 琶 14852 琺 14853 琼 14854 瑀 14855 瑁 14856 瑄 14857 瑕 14858 瑗 14859 瑙 14860 瑚 14861 瑛 14862 瑜 14863 瑞 14864 瑟 14865 瑠 14866 瑣 14867 瑤 14868 瑩 14869 瑪 14870 瑭 14871 瑮 14872 瑯 14873 瑰 14874 瑱 14875 瑳 14876 瑴 14877 瑶 14878 瑷 14879 瑾 14880 璀 14881 璁 14882 璃 14883 璇 14884 璈 14885 璋 14886 璎 14887 璐 14888 璘 14889 璜 14890 璝 14891 璞 14892 璟 14893 璠 14894 璣 14895 璧 14896 璨 14897 璩 14898 環 14899 璺 14900 璽 14901 瓊 14902 瓏 14903 瓒 14904 瓔 14905 瓘 14906 瓜 14907 瓠 14908 瓢 14909 瓣 14910 瓤 14911 瓦 14912 瓫 14913 瓮 14914 瓯 14915 瓴 14916 瓶 14917 瓷 14918 瓿 14919 甃 14920 甄 14921 甌 14922 甍 14923 甎 14924 甏 14925 甑 14926 甓 14927 甕 14928 甘 14929 甙 14930 甚 14931 甜 14932 生 14933 產 14934 産 14935 甥 14936 甦 14937 用 14938 甩 14939 甪 14940 甫 14941 甬 14942 甭 14943 甯 14944 田 14945 由 14946 甲 14947 申 14948 甴 14949 电 14950 男 14951 甸 14952 町 14953 画 14954 甾 14955 畀 14956 畅 14957 畈 14958 畉 14959 畊 14960 畋 14961 界 14962 畎 14963 畏 14964 畑 14965 畔 14966 留 14967 畚 14968 畛 14969 畜 14970 畝 14971 畠 14972 畢 14973 畤 14974 略 14975 畦 14976 番 14977 畫 14978 畬 14979 畭 14980 畯 14981 異 14982 畲 14983 畳 14984 畴 14985 畵 14986 當 14987 畷 14988 畸 14989 畹 14990 畿 14991 疃 14992 疆 14993 疇 14994 疊 14995 疋 14996 疍 14997 疎 14998 疏 14999 疑 15000 疔 15001 疖 15002 疗 15003 疙 15004 疚 15005 疝 15006 疟 15007 疠 15008 疡 15009 疣 15010 疤 15011 疥 15012 疫 15013 疬 15014 疭 15015 疮 15016 疯 15017 疰 15018 疱 15019 疲 15020 疳 15021 疴 15022 疵 15023 疸 15024 疹 15025 疼 15026 疽 15027 疾 15028 痂 15029 痃 15030 痄 15031 病 15032 症 15033 痈 15034 痉 15035 痊 15036 痍 15037 痒 15038 痔 15039 痕 15040 痘 15041 痙 15042 痛 15043 痞 15044 痢 15045 痣 15046 痤 15047 痦 15048 痧 15049 痨 15050 痩 15051 痪 15052 痫 15053 痰 15054 痱 15055 痲 15056 痳 15057 痴 15058 痹 15059 痺 15060 痼 15061 痾 15062 痿 15063 瘀 15064 瘁 15065 瘅 15066 瘆 15067 瘊 15068 瘋 15069 瘌 15070 瘍 15071 瘓 15072 瘕 15073 瘗 15074 瘘 15075 瘙 15076 瘝 15077 瘟 15078 瘠 15079 瘡 15080 瘢 15081 瘤 15082 瘦 15083 瘧 15084 瘩 15085 瘪 15086 瘫 15087 瘰 15088 瘳 15089 瘴 15090 瘵 15091 瘸 15092 瘻 15093 瘼 15094 瘾 15095 瘿 15096 癀 15097 療 15098 癃 15099 癆 15100 癇 15101 癈 15102 癌 15103 癍 15104 癎 15105 癒 15106 癔 15107 癖 15108 癘 15109 癜 15110 癞 15111 癡 15112 癢 15113 癣 15114 癥 15115 癧 15116 癩 15117 癪 15118 癫 15119 癬 15120 癮 15121 癯 15122 癰 15123 癱 15124 癲 15125 癸 15126 発 15127 登 15128 發 15129 白 15130 百 15131 皀 15132 皂 15133 的 15134 皆 15135 皇 15136 皈 15137 皋 15138 皌 15139 皎 15140 皐 15141 皑 15142 皓 15143 皕 15144 皖 15145 皙 15146 皚 15147 皝 15148 皞 15149 皤 15150 皦 15151 皮 15152 皯 15153 皰 15154 皱 15155 皲 15156 皴 15157 皷 15158 皸 15159 皹 15160 皺 15161 皿 15162 盂 15163 盃 15164 盅 15165 盆 15166 盈 15167 盉 15168 益 15169 盍 15170 盎 15171 盏 15172 盐 15173 监 15174 盒 15175 盔 15176 盖 15177 盗 15178 盘 15179 盛 15180 盜 15181 盞 15182 盟 15183 盡 15184 監 15185 盤 15186 盥 15187 盧 15188 盩 15189 盪 15190 目 15191 盯 15192 盱 15193 盲 15194 直 15195 相 15196 盹 15197 盻 15198 盼 15199 盾 15200 眀 15201 省 15202 眄 15203 眇 15204 眈 15205 眉 15206 看 15207 県 15208 眍 15209 眙 15210 眚 15211 眛 15212 眜 15213 眞 15214 真 15215 眠 15216 眥 15217 眦 15218 眨 15219 眩 15220 眬 15221 眭 15222 眯 15223 眵 15224 眶 15225 眷 15226 眸 15227 眺 15228 眼 15229 眾 15230 着 15231 睁 15232 睃 15233 睆 15234 睇 15235 睐 15236 睑 15237 睚 15238 睛 15239 睜 15240 睞 15241 睟 15242 睡 15243 睢 15244 督 15245 睥 15246 睦 15247 睨 15248 睫 15249 睬 15250 睱 15251 睹 15252 睺 15253 睽 15254 睾 15255 睿 15256 瞀 15257 瞄 15258 瞅 15259 瞆 15260 瞇 15261 瞋 15262 瞌 15263 瞎 15264 瞑 15265 瞒 15266 瞓 15267 瞞 15268 瞟 15269 瞠 15270 瞢 15271 瞥 15272 瞧 15273 瞩 15274 瞪 15275 瞬 15276 瞭 15277 瞰 15278 瞳 15279 瞵 15280 瞻 15281 瞼 15282 瞽 15283 瞾 15284 瞿 15285 矇 15286 矍 15287 矓 15288 矗 15289 矚 15290 矛 15291 矜 15292 矢 15293 矣 15294 知 15295 矧 15296 矩 15297 矫 15298 矬 15299 短 15300 矮 15301 矯 15302 矱 15303 石 15304 矶 15305 矸 15306 矼 15307 矽 15308 矾 15309 矿 15310 砀 15311 码 15312 砂 15313 砊 15314 砌 15315 砍 15316 砒 15317 研 15318 砕 15319 砖 15320 砗 15321 砘 15322 砚 15323 砜 15324 砝 15325 砟 15326 砠 15327 砣 15328 砥 15329 砦 15330 砧 15331 砩 15332 砫 15333 砬 15334 砭 15335 砰 15336 砲 15337 破 15338 砵 15339 砷 15340 砸 15341 砺 15342 砻 15343 砼 15344 砾 15345 砿 15346 础 15347 硁 15348 硅 15349 硌 15350 硐 15351 硒 15352 硕 15353 硖 15354 硗 15355 硚 15356 硝 15357 硞 15358 硪 15359 硫 15360 硬 15361 硭 15362 确 15363 硯 15364 硲 15365 硴 15366 硷 15367 硼 15368 硿 15369 碁 15370 碆 15371 碇 15372 碉 15373 碌 15374 碍 15375 碎 15376 碑 15377 碓 15378 碕 15379 碗 15380 碘 15381 碚 15382 碛 15383 碜 15384 碟 15385 碡 15386 碣 15387 碧 15388 碩 15389 碪 15390 碰 15391 碱 15392 碲 15393 碳 15394 碴 15395 確 15396 碼 15397 碾 15398 磁 15399 磅 15400 磆 15401 磉 15402 磊 15403 磋 15404 磐 15405 磑 15406 磒 15407 磔 15408 磕 15409 磙 15410 磚 15411 磡 15412 磧 15413 磨 15414 磬 15415 磯 15416 磲 15417 磴 15418 磷 15419 磺 15420 磻 15421 磾 15422 礁 15423 礅 15424 礌 15425 礎 15426 礒 15427 礓 15428 礙 15429 礞 15430 礦 15431 礪 15432 礫 15433 礬 15434 礴 15435 示 15436 礻 15437 礼 15438 礽 15439 社 15440 祀 15441 祁 15442 祆 15443 祇 15444 祈 15445 祉 15446 祎 15447 祏 15448 祐 15449 祓 15450 祖 15451 祗 15452 祚 15453 祛 15454 祜 15455 祝 15456 神 15457 祟 15458 祠 15459 祢 15460 祥 15461 祧 15462 票 15463 祭 15464 祯 15465 祷 15466 祸 15467 祺 15468 祼 15469 祿 15470 禀 15471 禁 15472 禄 15473 禅 15474 禊 15475 禍 15476 禎 15477 福 15478 禛 15479 禥 15480 禦 15481 禧 15482 禨 15483 禩 15484 禪 15485 禮 15486 禰 15487 禱 15488 禳 15489 禹 15490 禺 15491 离 15492 禽 15493 禾 15494 禿 15495 秀 15496 私 15497 秂 15498 秃 15499 秆 15500 秉 15501 秋 15502 种 15503 秏 15504 科 15505 秒 15506 秕 15507 秘 15508 租 15509 秡 15510 秣 15511 秤 15512 秦 15513 秧 15514 秩 15515 秫 15516 秬 15517 秭 15518 积 15519 称 15520 秸 15521 移 15522 秽 15523 秾 15524 稀 15525 稂 15526 稅 15527 稈 15528 稊 15529 程 15530 稍 15531 税 15532 稔 15533 稗 15534 稙 15535 稚 15536 稜 15537 稞 15538 稟 15539 稠 15540 稣 15541 種 15542 稱 15543 稲 15544 稳 15545 稷 15546 稹 15547 稻 15548 稼 15549 稽 15550 稿 15551 穀 15552 穂 15553 穆 15554 穇 15555 穌 15556 積 15557 穎 15558 穏 15559 穐 15560 穑 15561 穗 15562 穡 15563 穢 15564 穣 15565 穩 15566 穫 15567 穰 15568 穴 15569 究 15570 穷 15571 穸 15572 穹 15573 空 15574 穽 15575 穿 15576 窀 15577 突 15578 窃 15579 窄 15580 窈 15581 窍 15582 窎 15583 窑 15584 窒 15585 窓 15586 窕 15587 窖 15588 窗 15589 窘 15590 窜 15591 窝 15592 窟 15593 窠 15594 窡 15595 窣 15596 窥 15597 窦 15598 窨 15599 窩 15600 窪 15601 窭 15602 窮 15603 窯 15604 窳 15605 窶 15606 窸 15607 窺 15608 窾 15609 窿 15610 竃 15611 竄 15612 竅 15613 竇 15614 竈 15615 竊 15616 立 15617 竑 15618 竖 15619 站 15620 竜 15621 竝 15622 竞 15623 竟 15624 章 15625 竢 15626 竣 15627 童 15628 竦 15629 竪 15630 竭 15631 端 15632 竲 15633 競 15634 竹 15635 竺 15636 竽 15637 竿 15638 笂 15639 笃 15640 笄 15641 笆 15642 笈 15643 笊 15644 笋 15645 笏 15646 笑 15647 笔 15648 笕 15649 笖 15650 笘 15651 笙 15652 笛 15653 笞 15654 笠 15655 笤 15656 笥 15657 符 15658 笨 15659 笩 15660 笪 15661 笫 15662 第 15663 笳 15664 笵 15665 笸 15666 笹 15667 笺 15668 笼 15669 笾 15670 筅 15671 筆 15672 筇 15673 筈 15674 等 15675 筊 15676 筋 15677 筌 15678 筍 15679 筏 15680 筐 15681 筑 15682 筒 15683 答 15684 策 15685 筘 15686 筚 15687 筛 15688 筜 15689 筝 15690 筠 15691 筢 15692 筥 15693 筧 15694 筬 15695 筮 15696 筰 15697 筱 15698 筲 15699 筵 15700 筷 15701 筹 15702 筺 15703 筻 15704 筼 15705 签 15706 简 15707 箅 15708 箆 15709 箇 15710 箋 15711 箍 15712 箏 15713 箐 15714 箒 15715 箓 15716 箔 15717 箕 15718 算 15719 箙 15720 箚 15721 箜 15722 箝 15723 箟 15724 管 15725 箢 15726 箥 15727 箦 15728 箧 15729 箨 15730 箩 15731 箪 15732 箫 15733 箬 15734 箭 15735 箱 15736 箴 15737 箸 15738 箻 15739 箼 15740 箾 15741 節 15742 篁 15743 範 15744 篆 15745 篇 15746 築 15747 篋 15748 篌 15749 篑 15750 篓 15751 篙 15752 篚 15753 篝 15754 篠 15755 篡 15756 篤 15757 篥 15758 篦 15759 篩 15760 篪 15761 篭 15762 篮 15763 篱 15764 篳 15765 篶 15766 篷 15767 篼 15768 篾 15769 簀 15770 簃 15771 簇 15772 簋 15773 簌 15774 簍 15775 簏 15776 簑 15777 簒 15778 簓 15779 簔 15780 簖 15781 簗 15782 簟 15783 簡 15784 簣 15785 簦 15786 簧 15787 簪 15788 簫 15789 簰 15790 簷 15791 簸 15792 簺 15793 簽 15794 簾 15795 簿 15796 籀 15797 籁 15798 籃 15799 籇 15800 籌 15801 籍 15802 籏 15803 籐 15804 籓 15805 籔 15806 籖 15807 籟 15808 籠 15809 籣 15810 籤 15811 籬 15812 籮 15813 籲 15814 米 15815 类 15816 籼 15817 籽 15818 籾 15819 粁 15820 粂 15821 粃 15822 粉 15823 粋 15824 粍 15825 粑 15826 粒 15827 粕 15828 粗 15829 粘 15830 粛 15831 粝 15832 粟 15833 粢 15834 粤 15835 粥 15836 粦 15837 粧 15838 粪 15839 粭 15840 粮 15841 粱 15842 粲 15843 粳 15844 粵 15845 粹 15846 粼 15847 粽 15848 精 15849 糀 15850 糁 15851 糅 15852 糊 15853 糌 15854 糍 15855 糎 15856 糒 15857 糕 15858 糖 15859 糗 15860 糘 15861 糙 15862 糜 15863 糞 15864 糟 15865 糠 15866 糢 15867 糧 15868 糨 15869 糯 15870 糲 15871 糶 15872 糸 15873 糺 15874 系 15875 糾 15876 紀 15877 紂 15878 約 15879 紅 15880 紆 15881 紉 15882 紊 15883 紋 15884 納 15885 紐 15886 純 15887 紗 15888 紘 15889 紙 15890 級 15891 紛 15892 紜 15893 素 15894 紡 15895 索 15896 紧 15897 紫 15898 紬 15899 紮 15900 累 15901 細 15902 紲 15903 紳 15904 紵 15905 紹 15906 紺 15907 絀 15908 終 15909 絃 15910 組 15911 絅 15912 絆 15913 絋 15914 経 15915 絎 15916 絏 15917 結 15918 絕 15919 絖 15920 絛 15921 絜 15922 絞 15923 絡 15924 絢 15925 絣 15926 給 15927 絨 15928 絮 15929 絯 15930 統 15931 絲 15932 絳 15933 絵 15934 絶 15935 絹 15936 絺 15937 絽 15938 綁 15939 綉 15940 綏 15941 經 15942 継 15943 続 15944 綛 15945 綜 15946 綟 15947 綠 15948 綢 15949 綣 15950 綦 15951 綬 15952 維 15953 綮 15954 綯 15955 綰 15956 綱 15957 網 15958 綴 15959 綵 15960 綶 15961 綸 15962 綺 15963 綻 15964 綽 15965 綾 15966 綿 15967 緇 15968 緊 15969 緋 15970 総 15971 緑 15972 緒 15973 緘 15974 線 15975 緛 15976 緝 15977 緞 15978 締 15979 緡 15980 緣 15981 緤 15982 編 15983 緩 15984 緬 15985 緯 15986 緲 15987 練 15988 緻 15989 縁 15990 縄 15991 縅 15992 縈 15993 縉 15994 縊 15995 縋 15996 縒 15997 縛 15998 縞 15999 縟 16000 縠 16001 縢 16002 縣 16003 縦 16004 縫 16005 縮 16006 縱 16007 縲 16008 縴 16009 縵 16010 縷 16011 縹 16012 縺 16013 縻 16014 總 16015 績 16016 繁 16017 繃 16018 繆 16019 繇 16020 繊 16021 繋 16022 繍 16023 繑 16024 織 16025 繕 16026 繖 16027 繙 16028 繚 16029 繝 16030 繞 16031 繡 16032 繧 16033 繩 16034 繪 16035 繫 16036 繭 16037 繰 16038 繳 16039 繹 16040 繻 16041 繼 16042 繽 16043 纂 16044 纇 16045 纈 16046 續 16047 纍 16048 纏 16049 纐 16050 纒 16051 纓 16052 纔 16053 纖 16054 纛 16055 纜 16056 纠 16057 纡 16058 红 16059 纣 16060 纤 16061 纥 16062 约 16063 级 16064 纨 16065 纩 16066 纪 16067 纫 16068 纬 16069 纭 16070 纮 16071 纯 16072 纰 16073 纱 16074 纲 16075 纳 16076 纵 16077 纶 16078 纷 16079 纸 16080 纹 16081 纺 16082 纻 16083 纽 16084 纾 16085 线 16086 绀 16087 绁 16088 绂 16089 练 16090 组 16091 绅 16092 细 16093 织 16094 终 16095 绉 16096 绊 16097 绋 16098 绌 16099 绍 16100 绎 16101 经 16102 绐 16103 绑 16104 绒 16105 结 16106 绔 16107 绕 16108 绗 16109 绘 16110 给 16111 绚 16112 绛 16113 络 16114 绝 16115 绞 16116 统 16117 绡 16118 绢 16119 绣 16120 绤 16121 绥 16122 绦 16123 继 16124 绨 16125 绩 16126 绪 16127 绫 16128 续 16129 绮 16130 绯 16131 绰 16132 绱 16133 绲 16134 绳 16135 维 16136 绵 16137 绶 16138 绷 16139 绸 16140 绺 16141 绻 16142 综 16143 绽 16144 绾 16145 绿 16146 缀 16147 缁 16148 缂 16149 缃 16150 缄 16151 缅 16152 缆 16153 缇 16154 缈 16155 缉 16156 缊 16157 缋 16158 缌 16159 缎 16160 缑 16161 缒 16162 缓 16163 缔 16164 缕 16165 编 16166 缗 16167 缘 16168 缙 16169 缚 16170 缛 16171 缜 16172 缝 16173 缟 16174 缠 16175 缢 16176 缣 16177 缤 16178 缥 16179 缦 16180 缧 16181 缨 16182 缩 16183 缪 16184 缫 16185 缬 16186 缭 16187 缮 16188 缯 16189 缰 16190 缱 16191 缳 16192 缴 16193 缵 16194 缶 16195 缸 16196 缺 16197 罂 16198 罄 16199 罅 16200 罇 16201 罌 16202 罍 16203 罐 16204 网 16205 罔 16206 罕 16207 罗 16208 罘 16209 罚 16210 罟 16211 罠 16212 罡 16213 罢 16214 罧 16215 罨 16216 罩 16217 罪 16218 罫 16219 置 16220 罰 16221 署 16222 罴 16223 罵 16224 罷 16225 罹 16226 罾 16227 羁 16228 羂 16229 羃 16230 羅 16231 羆 16232 羇 16233 羈 16234 羊 16235 羌 16236 美 16237 羑 16238 羔 16239 羖 16240 羗 16241 羚 16242 羝 16243 羞 16244 羟 16245 羡 16246 羣 16247 群 16248 羧 16249 羨 16250 義 16251 羯 16252 羰 16253 羲 16254 羶 16255 羸 16256 羹 16257 羽 16258 羿 16259 翀 16260 翁 16261 翃 16262 翅 16263 翆 16264 翊 16265 翌 16266 翎 16267 習 16268 翔 16269 翕 16270 翘 16271 翚 16272 翛 16273 翟 16274 翠 16275 翡 16276 翥 16277 翦 16278 翩 16279 翫 16280 翮 16281 翰 16282 翱 16283 翳 16284 翹 16285 翻 16286 翼 16287 耀 16288 老 16289 考 16290 耄 16291 者 16292 耆 16293 耋 16294 而 16295 耍 16296 耐 16297 耒 16298 耕 16299 耗 16300 耘 16301 耙 16302 耜 16303 耦 16304 耧 16305 耨 16306 耪 16307 耱 16308 耳 16309 耵 16310 耶 16311 耷 16312 耸 16313 耻 16314 耽 16315 耿 16316 聂 16317 聃 16318 聆 16319 聊 16320 聋 16321 职 16322 聍 16323 聒 16324 联 16325 聖 16326 聘 16327 聚 16328 聞 16329 聟 16330 聡 16331 聢 16332 聨 16333 聩 16334 聪 16335 聯 16336 聰 16337 聲 16338 聳 16339 聴 16340 聵 16341 聶 16342 職 16343 聽 16344 聾 16345 聿 16346 肃 16347 肄 16348 肅 16349 肆 16350 肇 16351 肉 16352 肋 16353 肌 16354 肏 16355 肓 16356 肖 16357 肘 16358 肚 16359 肛 16360 肝 16361 肟 16362 肠 16363 股 16364 肢 16365 肤 16366 肥 16367 肩 16368 肪 16369 肫 16370 肬 16371 肭 16372 肮 16373 肯 16374 肱 16375 育 16376 肴 16377 肷 16378 肸 16379 肺 16380 肼 16381 肽 16382 肾 16383 肿 16384 胀 16385 胁 16386 胃 16387 胄 16388 胆 16389 背 16390 胍 16391 胎 16392 胖 16393 胗 16394 胙 16395 胚 16396 胛 16397 胜 16398 胝 16399 胞 16400 胡 16401 胤 16402 胥 16403 胧 16404 胪 16405 胫 16406 胬 16407 胭 16408 胯 16409 胰 16410 胱 16411 胳 16412 胴 16413 胶 16414 胸 16415 胺 16416 胼 16417 能 16418 脁 16419 脂 16420 脅 16421 脆 16422 脇 16423 脈 16424 脉 16425 脊 16426 脍 16427 脏 16428 脐 16429 脑 16430 脒 16431 脓 16432 脔 16433 脖 16434 脘 16435 脚 16436 脛 16437 脣 16438 脩 16439 脫 16440 脬 16441 脯 16442 脰 16443 脱 16444 脲 16445 脳 16446 脷 16447 脸 16448 脹 16449 脾 16450 腆 16451 腈 16452 腊 16453 腋 16454 腌 16455 腎 16456 腐 16457 腑 16458 腓 16459 腔 16460 腕 16461 腘 16462 腙 16463 腚 16464 腟 16465 腠 16466 腥 16467 腦 16468 腧 16469 腩 16470 腫 16471 腭 16472 腮 16473 腰 16474 腱 16475 腳 16476 腴 16477 腸 16478 腹 16479 腺 16480 腻 16481 腼 16482 腾 16483 腿 16484 膀 16485 膂 16486 膃 16487 膈 16488 膊 16489 膏 16490 膑 16491 膕 16492 膘 16493 膚 16494 膛 16495 膜 16496 膝 16497 膠 16498 膣 16499 膦 16500 膨 16501 膩 16502 膳 16503 膴 16504 膵 16505 膺 16506 膻 16507 膽 16508 膾 16509 膿 16510 臀 16511 臂 16512 臃 16513 臆 16514 臇 16515 臈 16516 臉 16517 臊 16518 臌 16519 臍 16520 臑 16521 臓 16522 臘 16523 臙 16524 臚 16525 臜 16526 臟 16527 臣 16528 臥 16529 臧 16530 臨 16531 自 16532 臬 16533 臭 16534 至 16535 致 16536 臺 16537 臻 16538 臼 16539 臾 16540 舀 16541 舁 16542 舂 16543 舅 16544 舆 16545 與 16546 興 16547 舉 16548 舊 16549 舌 16550 舍 16551 舎 16552 舐 16553 舒 16554 舔 16555 舖 16556 舗 16557 舘 16558 舛 16559 舜 16560 舞 16561 舟 16562 舢 16563 舣 16564 舩 16565 航 16566 舫 16567 般 16568 舮 16569 舯 16570 舰 16571 舱 16572 舲 16573 舳 16574 舵 16575 舶 16576 舷 16577 舸 16578 船 16579 舾 16580 艀 16581 艄 16582 艇 16583 艉 16584 艋 16585 艏 16586 艘 16587 艙 16588 艟 16589 艤 16590 艦 16591 艨 16592 艪 16593 艫 16594 艮 16595 良 16596 艰 16597 艱 16598 色 16599 艳 16600 艶 16601 艷 16602 艸 16603 艹 16604 艺 16605 艽 16606 艾 16607 艿 16608 节 16609 芃 16610 芈 16611 芊 16612 芋 16613 芍 16614 芎 16615 芑 16616 芒 16617 芗 16618 芘 16619 芙 16620 芜 16621 芝 16622 芟 16623 芡 16624 芣 16625 芤 16626 芥 16627 芦 16628 芨 16629 芩 16630 芪 16631 芫 16632 芬 16633 芭 16634 芮 16635 芯 16636 芰 16637 花 16638 芳 16639 芷 16640 芸 16641 芹 16642 芻 16643 芽 16644 芾 16645 苁 16646 苄 16647 苅 16648 苇 16649 苈 16650 苊 16651 苋 16652 苌 16653 苍 16654 苎 16655 苏 16656 苑 16657 苒 16658 苓 16659 苔 16660 苕 16661 苗 16662 苘 16663 苙 16664 苛 16665 苜 16666 苞 16667 苟 16668 苡 16669 苢 16670 苣 16671 苤 16672 若 16673 苦 16674 苧 16675 苫 16676 苯 16677 英 16678 苳 16679 苴 16680 苷 16681 苹 16682 苺 16683 苻 16684 苼 16685 苾 16686 茁 16687 茂 16688 范 16689 茄 16690 茅 16691 茆 16692 茈 16693 茉 16694 茌 16695 茎 16696 茏 16697 茑 16698 茔 16699 茕 16700 茗 16701 茘 16702 茚 16703 茛 16704 茜 16705 茣 16706 茧 16707 茨 16708 茫 16709 茬 16710 茭 16711 茯 16712 茱 16713 茲 16714 茳 16715 茴 16716 茵 16717 茶 16718 茸 16719 茹 16720 茺 16721 茼 16722 荀 16723 荃 16724 荅 16725 荆 16726 荇 16727 草 16728 荊 16729 荏 16730 荐 16731 荑 16732 荒 16733 荔 16734 荘 16735 荙 16736 荚 16737 荛 16738 荜 16739 荞 16740 荟 16741 荠 16742 荡 16743 荣 16744 荤 16745 荥 16746 荦 16747 荧 16748 荨 16749 荩 16750 荪 16751 荫 16752 荬 16753 药 16754 荳 16755 荷 16756 荸 16757 荻 16758 荼 16759 荽 16760 莅 16761 莆 16762 莇 16763 莉 16764 莊 16765 莎 16766 莒 16767 莓 16768 莕 16769 莖 16770 莘 16771 莙 16772 莚 16773 莜 16774 莞 16775 莟 16776 莠 16777 莢 16778 莧 16779 莨 16780 莩 16781 莪 16782 莫 16783 莱 16784 莲 16785 莳 16786 莴 16787 莵 16788 莶 16789 获 16790 莸 16791 莹 16792 莺 16793 莼 16794 莽 16795 菀 16796 菁 16797 菅 16798 菇 16799 菉 16800 菊 16801 菌 16802 菎 16803 菏 16804 菓 16805 菔 16806 菖 16807 菘 16808 菜 16809 菟 16810 菠 16811 菡 16812 菥 16813 菨 16814 菩 16815 菪 16816 菫 16817 華 16818 菰 16819 菱 16820 菲 16821 菴 16822 菸 16823 菹 16824 菽 16825 萁 16826 萃 16827 萄 16828 萆 16829 萊 16830 萋 16831 萌 16832 萍 16833 萎 16834 萏 16835 萓 16836 萘 16837 萜 16838 萝 16839 萠 16840 萢 16841 萤 16842 营 16843 萦 16844 萧 16845 萨 16846 萩 16847 萬 16848 萱 16849 萵 16850 萸 16851 萹 16852 萼 16853 落 16854 葆 16855 葈 16856 葉 16857 葎 16858 葑 16859 著 16860 葙 16861 葚 16862 葛 16863 葡 16864 董 16865 葦 16866 葩 16867 葫 16868 葬 16869 葭 16870 葯 16871 葱 16872 葳 16873 葵 16874 葶 16875 葷 16876 葸 16877 葹 16878 葺 16879 蒂 16880 蒄 16881 蒋 16882 蒌 16883 蒎 16884 蒐 16885 蒔 16886 蒗 16887 蒙 16888 蒜 16889 蒟 16890 蒡 16891 蒯 16892 蒲 16893 蒴 16894 蒸 16895 蒹 16896 蒺 16897 蒻 16898 蒼 16899 蒽 16900 蒿 16901 蓀 16902 蓁 16903 蓂 16904 蓄 16905 蓆 16906 蓉 16907 蓊 16908 蓋 16909 蓍 16910 蓐 16911 蓑 16912 蓓 16913 蓖 16914 蓙 16915 蓚 16916 蓝 16917 蓟 16918 蓠 16919 蓣 16920 蓥 16921 蓦 16922 蓬 16923 蓮 16924 蓴 16925 蓼 16926 蓿 16927 蔀 16928 蔌 16929 蔑 16930 蔓 16931 蔔 16932 蔕 16933 蔗 16934 蔚 16935 蔟 16936 蔡 16937 蔣 16938 蔤 16939 蔥 16940 蔦 16941 蔫 16942 蔬 16943 蔭 16944 蔵 16945 蔷 16946 蔸 16947 蔹 16948 蔺 16949 蔻 16950 蔼 16951 蔽 16952 蕁 16953 蕃 16954 蕈 16955 蕉 16956 蕊 16957 蕋 16958 蕎 16959 蕖 16960 蕗 16961 蕙 16962 蕚 16963 蕞 16964 蕣 16965 蕤 16966 蕨 16967 蕩 16968 蕪 16969 蕫 16970 蕭 16971 蕲 16972 蕴 16973 蕷 16974 蕺 16975 蕻 16976 蕾 16977 薀 16978 薁 16979 薄 16980 薅 16981 薇 16982 薈 16983 薊 16984 薏 16985 薐 16986 薑 16987 薔 16988 薗 16989 薙 16990 薛 16991 薜 16992 薢 16993 薤 16994 薦 16995 薨 16996 薩 16997 薪 16998 薫 16999 薬 17000 薭 17001 薮 17002 薯 17003 薰 17004 薳 17005 薷 17006 薹 17007 薺 17008 藁 17009 藉 17010 藍 17011 藏 17012 藐 17013 藓 17014 藕 17015 藜 17016 藝 17017 藠 17018 藤 17019 藥 17020 藦 17021 藩 17022 藪 17023 藷 17024 藹 17025 藺 17026 藻 17027 藿 17028 蘂 17029 蘅 17030 蘆 17031 蘇 17032 蘊 17033 蘋 17034 蘑 17035 蘓 17036 蘖 17037 蘗 17038 蘘 17039 蘚 17040 蘧 17041 蘭 17042 蘰 17043 蘸 17044 蘼 17045 蘿 17046 虎 17047 虏 17048 虐 17049 虑 17050 虓 17051 虔 17052 處 17053 虚 17054 虛 17055 虜 17056 虞 17057 號 17058 虢 17059 虧 17060 虫 17061 虬 17062 虮 17063 虱 17064 虵 17065 虹 17066 虺 17067 虻 17068 虽 17069 虾 17070 虿 17071 蚀 17072 蚁 17073 蚂 17074 蚊 17075 蚋 17076 蚌 17077 蚍 17078 蚓 17079 蚕 17080 蚜 17081 蚝 17082 蚡 17083 蚣 17084 蚤 17085 蚧 17086 蚨 17087 蚩 17088 蚪 17089 蚫 17090 蚬 17091 蚯 17092 蚰 17093 蚱 17094 蚳 17095 蚴 17096 蚵 17097 蚶 17098 蛀 17099 蛄 17100 蛆 17101 蛇 17102 蛉 17103 蛊 17104 蛋 17105 蛍 17106 蛎 17107 蛏 17108 蛐 17109 蛑 17110 蛔 17111 蛘 17112 蛙 17113 蛛 17114 蛞 17115 蛟 17116 蛤 17117 蛩 17118 蛬 17119 蛭 17120 蛮 17121 蛯 17122 蛰 17123 蛱 17124 蛲 17125 蛳 17126 蛴 17127 蛸 17128 蛹 17129 蛻 17130 蛼 17131 蛽 17132 蛾 17133 蜀 17134 蜂 17135 蜃 17136 蜆 17137 蜇 17138 蜈 17139 蜉 17140 蜊 17141 蜍 17142 蜎 17143 蜑 17144 蜒 17145 蜓 17146 蜕 17147 蜗 17148 蜘 17149 蜚 17150 蜛 17151 蜜 17152 蜞 17153 蜡 17154 蜢 17155 蜣 17156 蜥 17157 蜩 17158 蜮 17159 蜱 17160 蜴 17161 蜷 17162 蜻 17163 蜾 17164 蜿 17165 蝇 17166 蝈 17167 蝉 17168 蝋 17169 蝌 17170 蝎 17171 蝓 17172 蝕 17173 蝗 17174 蝘 17175 蝙 17176 蝟 17177 蝠 17178 蝣 17179 蝥 17180 蝦 17181 蝨 17182 蝮 17183 蝰 17184 蝲 17185 蝴 17186 蝶 17187 蝸 17188 蝻 17189 蝼 17190 蝽 17191 蝾 17192 蝿 17193 螂 17194 螃 17195 螅 17196 螈 17197 螋 17198 融 17199 螞 17200 螟 17201 螠 17202 螢 17203 螨 17204 螫 17205 螬 17206 螭 17207 螯 17208 螳 17209 螵 17210 螺 17211 螻 17212 螽 17213 蟀 17214 蟄 17215 蟆 17216 蟇 17217 蟊 17218 蟋 17219 蟐 17220 蟑 17221 蟒 17222 蟛 17223 蟜 17224 蟟 17225 蟠 17226 蟥 17227 蟪 17228 蟬 17229 蟭 17230 蟮 17231 蟯 17232 蟲 17233 蟶 17234 蟷 17235 蟹 17236 蟻 17237 蟾 17238 蠃 17239 蠅 17240 蠊 17241 蠋 17242 蠍 17243 蠎 17244 蠏 17245 蠑 17246 蠓 17247 蠕 17248 蠖 17249 蠛 17250 蠜 17251 蠟 17252 蠡 17253 蠢 17254 蠣 17255 蠧 17256 蠱 17257 蠲 17258 蠶 17259 蠹 17260 蠻 17261 蠼 17262 血 17263 衄 17264 衅 17265 衆 17266 行 17267 衍 17268 衎 17269 衒 17270 術 17271 衔 17272 街 17273 衙 17274 衛 17275 衝 17276 衞 17277 衡 17278 衢 17279 衣 17280 补 17281 表 17282 衩 17283 衫 17284 衬 17285 衮 17286 衯 17287 衰 17288 衲 17289 衵 17290 衷 17291 衽 17292 衾 17293 衿 17294 袁 17295 袂 17296 袄 17297 袅 17298 袆 17299 袈 17300 袋 17301 袍 17302 袒 17303 袓 17304 袖 17305 袗 17306 袙 17307 袜 17308 袝 17309 袞 17310 袢 17311 袤 17312 袪 17313 被 17314 袭 17315 袰 17316 袱 17317 袴 17318 袵 17319 袷 17320 袼 17321 袿 17322 裁 17323 裂 17324 裃 17325 裄 17326 装 17327 裆 17328 裇 17329 裉 17330 裊 17331 裎 17332 裏 17333 裒 17334 裔 17335 裕 17336 裘 17337 裙 17338 裛 17339 補 17340 裝 17341 裟 17342 裡 17343 裢 17344 裤 17345 裥 17346 裨 17347 裰 17348 裱 17349 裲 17350 裳 17351 裴 17352 裸 17353 裹 17354 製 17355 裾 17356 褀 17357 褂 17358 褄 17359 複 17360 褊 17361 褌 17362 褐 17363 褒 17364 褓 17365 褔 17366 褙 17367 褚 17368 褛 17369 褞 17370 褡 17371 褥 17372 褪 17373 褫 17374 褭 17375 褰 17376 褲 17377 褴 17378 褶 17379 褸 17380 褻 17381 襀 17382 襁 17383 襄 17384 襖 17385 襜 17386 襞 17387 襟 17388 襠 17389 襤 17390 襦 17391 襪 17392 襯 17393 襲 17394 襴 17395 襷 17396 襻 17397 西 17398 要 17399 覃 17400 覆 17401 覇 17402 見 17403 規 17404 覓 17405 視 17406 覗 17407 覘 17408 覚 17409 覡 17410 覧 17411 覩 17412 親 17413 覯 17414 覲 17415 観 17416 覷 17417 覺 17418 覽 17419 覿 17420 觀 17421 见 17422 观 17423 规 17424 觅 17425 视 17426 觇 17427 览 17428 觉 17429 觊 17430 觌 17431 觎 17432 觏 17433 觐 17434 觑 17435 角 17436 觚 17437 觜 17438 觝 17439 觞 17440 解 17441 觥 17442 触 17443 觫 17444 觯 17445 觱 17446 觳 17447 觴 17448 觸 17449 言 17450 訂 17451 訃 17452 訇 17453 計 17454 訊 17455 訌 17456 討 17457 訓 17458 訕 17459 託 17460 記 17461 訚 17462 訛 17463 訝 17464 訟 17465 訢 17466 訣 17467 訥 17468 訪 17469 設 17470 許 17471 訳 17472 訴 17473 訶 17474 診 17475 註 17476 証 17477 訾 17478 詁 17479 詈 17480 詐 17481 詒 17482 詔 17483 評 17484 詛 17485 詝 17486 詞 17487 詠 17488 詢 17489 詣 17490 試 17491 詩 17492 詫 17493 詬 17494 詭 17495 詮 17496 詰 17497 話 17498 該 17499 詳 17500 詹 17501 誂 17502 誄 17503 誅 17504 誇 17505 誉 17506 誊 17507 誌 17508 認 17509 誑 17510 誒 17511 誓 17512 誕 17513 誘 17514 語 17515 誠 17516 誡 17517 誣 17518 誤 17519 誥 17520 誦 17521 誨 17522 說 17523 説 17524 読 17525 誰 17526 課 17527 誹 17528 誼 17529 調 17530 諂 17531 諄 17532 談 17533 請 17534 諌 17535 諍 17536 諏 17537 諒 17538 論 17539 諗 17540 諚 17541 諛 17542 諜 17543 諡 17544 諢 17545 諤 17546 諦 17547 諧 17548 諫 17549 諭 17550 諮 17551 諱 17552 諳 17553 諷 17554 諸 17555 諺 17556 諼 17557 諾 17558 謀 17559 謁 17560 謂 17561 謄 17562 謇 17563 謊 17564 謎 17565 謐 17566 謔 17567 謖 17568 謗 17569 謙 17570 謚 17571 講 17572 謝 17573 謠 17574 謡 17575 謦 17576 謨 17577 謩 17578 謫 17579 謬 17580 謳 17581 謷 17582 謹 17583 譁 17584 證 17585 譎 17586 譏 17587 譖 17588 識 17589 譚 17590 譜 17591 譞 17592 譟 17593 警 17594 譫 17595 譬 17596 譯 17597 議 17598 譲 17599 譴 17600 護 17601 譽 17602 讀 17603 讃 17604 變 17605 讌 17606 讎 17607 讐 17608 讒 17609 讓 17610 讖 17611 讚 17612 讠 17613 计 17614 订 17615 讣 17616 认 17617 讥 17618 讦 17619 讧 17620 讨 17621 让 17622 讪 17623 讫 17624 训 17625 议 17626 讯 17627 记 17628 讲 17629 讳 17630 讴 17631 讵 17632 讶 17633 讷 17634 许 17635 讹 17636 论 17637 讼 17638 讽 17639 设 17640 访 17641 诀 17642 证 17643 诂 17644 诃 17645 评 17646 诅 17647 识 17648 诈 17649 诉 17650 诊 17651 诋 17652 诌 17653 词 17654 诎 17655 诏 17656 诐 17657 译 17658 诒 17659 诓 17660 诔 17661 试 17662 诖 17663 诗 17664 诘 17665 诙 17666 诚 17667 诛 17668 诜 17669 话 17670 诞 17671 诟 17672 诠 17673 诡 17674 询 17675 诣 17676 诤 17677 该 17678 详 17679 诧 17680 诨 17681 诩 17682 诫 17683 诬 17684 语 17685 诮 17686 误 17687 诰 17688 诱 17689 诲 17690 诳 17691 说 17692 诵 17693 诶 17694 请 17695 诸 17696 诹 17697 诺 17698 读 17699 诼 17700 诽 17701 课 17702 诿 17703 谀 17704 谁 17705 谂 17706 调 17707 谄 17708 谅 17709 谆 17710 谈 17711 谊 17712 谋 17713 谌 17714 谍 17715 谎 17716 谏 17717 谐 17718 谑 17719 谒 17720 谓 17721 谔 17722 谕 17723 谖 17724 谗 17725 谘 17726 谙 17727 谚 17728 谛 17729 谜 17730 谝 17731 谞 17732 谟 17733 谠 17734 谡 17735 谢 17736 谣 17737 谤 17738 谥 17739 谦 17740 谧 17741 谨 17742 谩 17743 谪 17744 谬 17745 谭 17746 谮 17747 谯 17748 谰 17749 谱 17750 谲 17751 谳 17752 谴 17753 谵 17754 谶 17755 谷 17756 谺 17757 谿 17758 豁 17759 豅 17760 豆 17761 豇 17762 豈 17763 豉 17764 豊 17765 豌 17766 豎 17767 豐 17768 豔 17769 豕 17770 豚 17771 豛 17772 豝 17773 象 17774 豢 17775 豨 17776 豪 17777 豫 17778 豬 17779 豳 17780 豸 17781 豹 17782 豺 17783 貂 17784 貅 17785 貉 17786 貊 17787 貌 17788 貓 17789 貔 17790 貘 17791 貝 17792 貞 17793 負 17794 財 17795 貢 17796 貧 17797 貨 17798 販 17799 貪 17800 貫 17801 責 17802 貯 17803 貰 17804 貲 17805 貳 17806 貴 17807 貶 17808 買 17809 貸 17810 費 17811 貼 17812 貽 17813 貿 17814 賀 17815 賁 17816 賂 17817 賃 17818 賄 17819 資 17820 賈 17821 賊 17822 賎 17823 賑 17824 賒 17825 賓 17826 賚 17827 賛 17828 賜 17829 賞 17830 賠 17831 賢 17832 賣 17833 賤 17834 賦 17835 質 17836 賬 17837 賭 17838 賴 17839 賺 17840 購 17841 賽 17842 贄 17843 贅 17844 贇 17845 贈 17846 贊 17847 贋 17848 贏 17849 贐 17850 贓 17851 贔 17852 贖 17853 贝 17854 贞 17855 负 17856 贡 17857 财 17858 责 17859 贤 17860 败 17861 账 17862 货 17863 质 17864 贩 17865 贪 17866 贫 17867 贬 17868 购 17869 贮 17870 贯 17871 贰 17872 贱 17873 贲 17874 贴 17875 贵 17876 贶 17877 贷 17878 贸 17879 费 17880 贺 17881 贻 17882 贼 17883 贽 17884 贾 17885 贿 17886 赁 17887 赂 17888 赃 17889 资 17890 赅 17891 赈 17892 赉 17893 赊 17894 赋 17895 赌 17896 赍 17897 赎 17898 赏 17899 赐 17900 赓 17901 赔 17902 赕 17903 赖 17904 赘 17905 赙 17906 赚 17907 赛 17908 赜 17909 赝 17910 赞 17911 赟 17912 赠 17913 赡 17914 赢 17915 赣 17916 赤 17917 赦 17918 赧 17919 赪 17920 赫 17921 赬 17922 赭 17923 走 17924 赳 17925 赴 17926 赵 17927 赶 17928 起 17929 趁 17930 趄 17931 超 17932 越 17933 趋 17934 趔 17935 趕 17936 趙 17937 趟 17938 趣 17939 趨 17940 足 17941 趴 17942 趵 17943 趸 17944 趺 17945 趾 17946 趿 17947 跂 17948 跃 17949 跄 17950 跆 17951 跋 17952 跌 17953 跎 17954 跏 17955 跑 17956 跖 17957 跗 17958 跚 17959 跛 17960 距 17961 跞 17962 跟 17963 跡 17964 跣 17965 跤 17966 跨 17967 跩 17968 跪 17969 跫 17970 跬 17971 路 17972 跱 17973 跳 17974 践 17975 跶 17976 跷 17977 跸 17978 跹 17979 跺 17980 跻 17981 跼 17982 跽 17983 跿 17984 踅 17985 踉 17986 踊 17987 踌 17988 踎 17989 踏 17990 踐 17991 踔 17992 踖 17993 踝 17994 踞 17995 踟 17996 踡 17997 踢 17998 踣 17999 踦 18000 踧 18001 踩 18002 踪 18003 踬 18004 踭 18005 踮 18006 踯 18007 踰 18008 踱 18009 踴 18010 踵 18011 踹 18012 踺 18013 踽 18014 蹀 18015 蹁 18016 蹂 18017 蹄 18018 蹇 18019 蹈 18020 蹉 18021 蹊 18022 蹋 18023 蹌 18024 蹐 18025 蹑 18026 蹒 18027 蹕 18028 蹙 18029 蹚 18030 蹟 18031 蹠 18032 蹡 18033 蹣 18034 蹤 18035 蹦 18036 蹩 18037 蹬 18038 蹭 18039 蹯 18040 蹰 18041 蹲 18042 蹴 18043 蹶 18044 蹼 18045 蹽 18046 蹿 18047 躁 18048 躄 18049 躅 18050 躇 18051 躊 18052 躍 18053 躏 18054 躐 18055 躑 18056 躓 18057 躔 18058 躙 18059 躜 18060 躡 18061 躪 18062 身 18063 躬 18064 躯 18065 躰 18066 躱 18067 躲 18068 躺 18069 躾 18070 軀 18071 軈 18072 車 18073 軋 18074 軌 18075 軍 18076 軎 18077 軒 18078 軛 18079 軟 18080 転 18081 軣 18082 軫 18083 軸 18084 軻 18085 軼 18086 軽 18087 較 18088 載 18089 輊 18090 輌 18091 輒 18092 輓 18093 輔 18094 輕 18095 輛 18096 輜 18097 輝 18098 輦 18099 輩 18100 輪 18101 輯 18102 輳 18103 輶 18104 輸 18105 輻 18106 輾 18107 輿 18108 轂 18109 轄 18110 轅 18111 轆 18112 轉 18113 轌 18114 轍 18115 轎 18116 轗 18117 轟 18118 轡 18119 轢 18120 轣 18121 轤 18122 车 18123 轧 18124 轨 18125 轩 18126 轫 18127 转 18128 轭 18129 轮 18130 软 18131 轰 18132 轱 18133 轲 18134 轳 18135 轴 18136 轵 18137 轶 18138 轸 18139 轹 18140 轺 18141 轻 18142 轼 18143 载 18144 轾 18145 轿 18146 辂 18147 较 18148 辄 18149 辅 18150 辆 18151 辇 18152 辈 18153 辉 18154 辊 18155 辋 18156 辍 18157 辎 18158 辏 18159 辐 18160 辑 18161 输 18162 辔 18163 辕 18164 辖 18165 辗 18166 辘 18167 辙 18168 辚 18169 辛 18170 辜 18171 辞 18172 辟 18173 辣 18174 辦 18175 辨 18176 辩 18177 辫 18178 辭 18179 辮 18180 辯 18181 辰 18182 辱 18183 農 18184 辷 18185 边 18186 辺 18187 辻 18188 込 18189 辽 18190 达 18191 辿 18192 迁 18193 迂 18194 迄 18195 迅 18196 过 18197 迈 18198 迎 18199 运 18200 近 18201 迓 18202 返 18203 迕 18204 还 18205 这 18206 迚 18207 进 18208 远 18209 违 18210 连 18211 迟 18212 迠 18213 迢 18214 迤 18215 迥 18216 迦 18217 迨 18218 迩 18219 迪 18220 迫 18221 迭 18222 迮 18223 述 18224 迳 18225 迴 18226 迷 18227 迸 18228 迹 18229 追 18230 退 18231 送 18232 适 18233 逃 18234 逄 18235 逅 18236 逆 18237 选 18238 逊 18239 逋 18240 逍 18241 透 18242 逐 18243 逑 18244 递 18245 逓 18246 途 18247 逕 18248 逖 18249 逗 18250 這 18251 通 18252 逛 18253 逝 18254 逞 18255 速 18256 造 18257 逡 18258 逢 18259 連 18260 逦 18261 逮 18262 逯 18263 週 18264 進 18265 逵 18266 逶 18267 逸 18268 逻 18269 逼 18270 逾 18271 遁 18272 遂 18273 遄 18274 遅 18275 遇 18276 遉 18277 遊 18278 運 18279 遍 18280 過 18281 遏 18282 遐 18283 遑 18284 遒 18285 道 18286 達 18287 違 18288 遖 18289 遗 18290 遘 18291 遙 18292 遛 18293 遜 18294 遞 18295 遠 18296 遡 18297 遢 18298 遣 18299 遥 18300 遨 18301 適 18302 遭 18303 遮 18304 遯 18305 遲 18306 遴 18307 遵 18308 遷 18309 選 18310 遹 18311 遺 18312 遼 18313 遽 18314 避 18315 邀 18316 邁 18317 邂 18318 邃 18319 還 18320 邅 18321 邇 18322 邈 18323 邉 18324 邊 18325 邋 18326 邏 18327 邑 18328 邓 18329 邕 18330 邗 18331 邘 18332 邙 18333 邛 18334 邝 18335 邠 18336 邡 18337 邢 18338 那 18339 邦 18340 邨 18341 邪 18342 邬 18343 邮 18344 邯 18345 邰 18346 邱 18347 邳 18348 邴 18349 邵 18350 邶 18351 邸 18352 邹 18353 邺 18354 邻 18355 邽 18356 邾 18357 郁 18358 郃 18359 郄 18360 郅 18361 郇 18362 郊 18363 郎 18364 郏 18365 郐 18366 郑 18367 郓 18368 郕 18369 郛 18370 郜 18371 郝 18372 郞 18373 郡 18374 郢 18375 郤 18376 郦 18377 郧 18378 部 18379 郫 18380 郭 18381 郯 18382 郴 18383 郵 18384 郷 18385 郸 18386 都 18387 郾 18388 郿 18389 鄂 18390 鄄 18391 鄅 18392 鄉 18393 鄏 18394 鄒 18395 鄘 18396 鄙 18397 鄚 18398 鄜 18399 鄞 18400 鄠 18401 鄢 18402 鄣 18403 鄧 18404 鄩 18405 鄫 18406 鄭 18407 鄮 18408 鄯 18409 鄰 18410 鄱 18411 鄲 18412 鄺 18413 酆 18414 酉 18415 酊 18416 酋 18417 酌 18418 配 18419 酎 18420 酐 18421 酒 18422 酔 18423 酗 18424 酘 18425 酚 18426 酝 18427 酞 18428 酡 18429 酢 18430 酣 18431 酤 18432 酥 18433 酩 18434 酪 18435 酫 18436 酬 18437 酮 18438 酯 18439 酰 18440 酱 18441 酵 18442 酶 18443 酷 18444 酸 18445 酹 18446 酺 18447 酽 18448 酿 18449 醂 18450 醅 18451 醇 18452 醉 18453 醋 18454 醌 18455 醍 18456 醐 18457 醒 18458 醗 18459 醚 18460 醛 18461 醜 18462 醞 18463 醢 18464 醣 18465 醤 18466 醪 18467 醫 18468 醬 18469 醭 18470 醮 18471 醯 18472 醲 18473 醴 18474 醵 18475 醸 18476 醺 18477 釀 18478 釁 18479 釆 18480 采 18481 釈 18482 釉 18483 释 18484 釋 18485 里 18486 重 18487 野 18488 量 18489 釐 18490 金 18491 釘 18492 釛 18493 釜 18494 針 18495 釡 18496 釣 18497 釦 18498 釧 18499 釭 18500 釵 18501 釶 18502 釼 18503 釿 18504 鈇 18505 鈍 18506 鈎 18507 鈑 18508 鈔 18509 鈕 18510 鈞 18511 鈩 18512 鈪 18513 鈳 18514 鈴 18515 鈷 18516 鈿 18517 鉄 18518 鉈 18519 鉉 18520 鉋 18521 鉏 18522 鉗 18523 鉛 18524 鉞 18525 鉢 18526 鉤 18527 鉦 18528 鉱 18529 鉴 18530 鉾 18531 銀 18532 銃 18533 銅 18534 銑 18535 銓 18536 銕 18537 銖 18538 銘 18539 銚 18540 銛 18541 銜 18542 銭 18543 銮 18544 銳 18545 銶 18546 銷 18547 銹 18548 鋆 18549 鋈 18550 鋏 18551 鋐 18552 鋒 18553 鋤 18554 鋩 18555 鋪 18556 鋭 18557 鋲 18558 鋳 18559 鋸 18560 鋹 18561 鋺 18562 鋼 18563 錄 18564 錆 18565 錏 18566 錐 18567 錘 18568 錙 18569 錚 18570 錞 18571 錠 18572 錢 18573 錣 18574 錦 18575 錨 18576 錫 18577 錬 18578 錮 18579 錯 18580 録 18581 錵 18582 錶 18583 錺 18584 錾 18585 鍉 18586 鍊 18587 鍋 18588 鍍 18589 鍒 18590 鍔 18591 鍛 18592 鍜 18593 鍥 18594 鍪 18595 鍬 18596 鍮 18597 鍵 18598 鍼 18599 鍾 18600 鎉 18601 鎊 18602 鎌 18603 鎏 18604 鎔 18605 鎖 18606 鎗 18607 鎚 18608 鎛 18609 鎧 18610 鎬 18611 鎭 18612 鎮 18613 鎰 18614 鎸 18615 鎹 18616 鏃 18617 鏈 18618 鏊 18619 鏐 18620 鏑 18621 鏖 18622 鏗 18623 鏘 18624 鏝 18625 鏟 18626 鏡 18627 鏤 18628 鏥 18629 鏨 18630 鐃 18631 鐇 18632 鐎 18633 鐐 18634 鐔 18635 鐘 18636 鐙 18637 鐚 18638 鐡 18639 鐧 18640 鐮 18641 鐲 18642 鐵 18643 鐶 18644 鐸 18645 鐺 18646 鑁 18647 鑄 18648 鑊 18649 鑑 18650 鑒 18651 鑓 18652 鑛 18653 鑞 18654 鑠 18655 鑢 18656 鑪 18657 鑫 18658 鑰 18659 鑱 18660 鑲 18661 鑵 18662 鑷 18663 鑹 18664 鑼 18665 鑽 18666 鑿 18667 钇 18668 针 18669 钉 18670 钊 18671 钋 18672 钌 18673 钍 18674 钎 18675 钏 18676 钐 18677 钒 18678 钓 18679 钔 18680 钕 18681 钗 18682 钘 18683 钙 18684 钚 18685 钛 18686 钜 18687 钝 18688 钞 18689 钟 18690 钠 18691 钡 18692 钢 18693 钣 18694 钤 18695 钥 18696 钦 18697 钧 18698 钨 18699 钩 18700 钪 18701 钫 18702 钬 18703 钮 18704 钯 18705 钰 18706 钱 18707 钲 18708 钳 18709 钴 18710 钵 18711 钹 18712 钺 18713 钻 18714 钼 18715 钽 18716 钾 18717 钿 18718 铀 18719 铁 18720 铂 18721 铃 18722 铄 18723 铅 18724 铆 18725 铈 18726 铉 18727 铊 18728 铋 18729 铌 18730 铍 18731 铎 18732 铐 18733 铑 18734 铒 18735 铓 18736 铖 18737 铗 18738 铙 18739 铚 18740 铛 18741 铜 18742 铝 18743 铞 18744 铟 18745 铠 18746 铡 18747 铢 18748 铣 18749 铤 18750 铥 18751 铦 18752 铧 18753 铨 18754 铩 18755 铪 18756 铫 18757 铬 18758 铭 18759 铮 18760 铯 18761 铰 18762 铱 18763 铲 18764 铳 18765 铵 18766 银 18767 铷 18768 铸 18769 铺 18770 铼 18771 链 18772 铿 18773 销 18774 锁 18775 锂 18776 锃 18777 锄 18778 锅 18779 锆 18780 锇 18781 锈 18782 锉 18783 锊 18784 锋 18785 锌 18786 锍 18787 锏 18788 锐 18789 锑 18790 锒 18791 锔 18792 锕 18793 锖 18794 锗 18795 锘 18796 错 18797 锚 18798 锛 18799 锜 18800 锝 18801 锞 18802 锟 18803 锡 18804 锢 18805 锣 18806 锤 18807 锥 18808 锦 18809 锨 18810 锩 18811 锫 18812 锬 18813 锭 18814 键 18815 锯 18816 锰 18817 锱 18818 锲 18819 锴 18820 锵 18821 锶 18822 锷 18823 锸 18824 锹 18825 锺 18826 锻 18827 镀 18828 镁 18829 镂 18830 镅 18831 镆 18832 镇 18833 镉 18834 镊 18835 镋 18836 镌 18837 镍 18838 镏 18839 镐 18840 镑 18841 镒 18842 镔 18843 镕 18844 镖 18845 镗 18846 镘 18847 镛 18848 镜 18849 镝 18850 镞 18851 镟 18852 镠 18853 镡 18854 镢 18855 镣 18856 镥 18857 镧 18858 镩 18859 镪 18860 镫 18861 镬 18862 镭 18863 镯 18864 镰 18865 镱 18866 镲 18867 镳 18868 镵 18869 镶 18870 長 18871 长 18872 門 18873 閂 18874 閃 18875 閇 18876 閉 18877 閊 18878 開 18879 閎 18880 閏 18881 閑 18882 閒 18883 間 18884 閔 18885 閖 18886 閘 18887 閟 18888 関 18889 閣 18890 閤 18891 閥 18892 閦 18893 閨 18894 閭 18895 閱 18896 閲 18897 閹 18898 閻 18899 閼 18900 閾 18901 闃 18902 闆 18903 闇 18904 闊 18905 闌 18906 闍 18907 闕 18908 闖 18909 闘 18910 關 18911 闡 18912 闢 18913 闥 18914 门 18915 闩 18916 闪 18917 闫 18918 闭 18919 问 18920 闯 18921 闰 18922 闱 18923 闲 18924 闳 18925 间 18926 闵 18927 闷 18928 闸 18929 闹 18930 闺 18931 闻 18932 闼 18933 闽 18934 闾 18935 闿 18936 阀 18937 阁 18938 阂 18939 阃 18940 阄 18941 阅 18942 阆 18943 阇 18944 阈 18945 阉 18946 阊 18947 阋 18948 阌 18949 阍 18950 阎 18951 阏 18952 阐 18953 阑 18954 阒 18955 阔 18956 阕 18957 阖 18958 阗 18959 阙 18960 阚 18961 阜 18962 阝 18963 队 18964 阡 18965 阨 18966 阪 18967 阬 18968 阮 18969 阱 18970 防 18971 阳 18972 阴 18973 阵 18974 阶 18975 阻 18976 阼 18977 阽 18978 阿 18979 陀 18980 陂 18981 附 18982 际 18983 陆 18984 陇 18985 陈 18986 陉 18987 陋 18988 陌 18989 降 18990 限 18991 陔 18992 陕 18993 陛 18994 陜 18995 陝 18996 陞 18997 陟 18998 陡 18999 院 19000 陣 19001 除 19002 陥 19003 陦 19004 陧 19005 陨 19006 险 19007 陪 19008 陬 19009 陰 19010 陲 19011 陳 19012 陵 19013 陶 19014 陷 19015 陸 19016 険 19017 陽 19018 隅 19019 隆 19020 隈 19021 隊 19022 隋 19023 隍 19024 階 19025 随 19026 隐 19027 隔 19028 隕 19029 隗 19030 隘 19031 隙 19032 際 19033 障 19034 隠 19035 隣 19036 隧 19037 隨 19038 險 19039 隰 19040 隱 19041 隲 19042 隳 19043 隶 19044 隷 19045 隸 19046 隹 19047 隻 19048 隼 19049 隽 19050 难 19051 雀 19052 雁 19053 雄 19054 雅 19055 集 19056 雇 19057 雉 19058 雋 19059 雌 19060 雍 19061 雎 19062 雏 19063 雑 19064 雒 19065 雕 19066 雖 19067 雙 19068 雛 19069 雜 19070 雞 19071 雠 19072 離 19073 難 19074 雨 19075 雩 19076 雪 19077 雫 19078 雯 19079 雰 19080 雱 19081 雲 19082 雳 19083 零 19084 雷 19085 雹 19086 電 19087 雾 19088 需 19089 霁 19090 霄 19091 霆 19092 震 19093 霈 19094 霉 19095 霊 19096 霍 19097 霎 19098 霏 19099 霑 19100 霓 19101 霖 19102 霙 19103 霜 19104 霞 19105 霧 19106 霪 19107 霫 19108 霭 19109 霰 19110 露 19111 霸 19112 霹 19113 霽 19114 霾 19115 靂 19116 靄 19117 靆 19118 靈 19119 靉 19120 靑 19121 青 19122 靓 19123 靖 19124 静 19125 靚 19126 靛 19127 靜 19128 非 19129 靠 19130 靡 19131 面 19132 靥 19133 靦 19134 靨 19135 革 19136 靫 19137 靭 19138 靱 19139 靳 19140 靴 19141 靶 19142 靸 19143 靹 19144 靺 19145 靼 19146 鞁 19147 鞄 19148 鞅 19149 鞆 19150 鞋 19151 鞍 19152 鞏 19153 鞐 19154 鞑 19155 鞘 19156 鞜 19157 鞠 19158 鞣 19159 鞥 19160 鞦 19161 鞧 19162 鞨 19163 鞫 19164 鞬 19165 鞭 19166 鞴 19167 鞶 19168 韂 19169 韃 19170 韋 19171 韌 19172 韓 19173 韘 19174 韜 19175 韡 19176 韦 19177 韧 19178 韩 19179 韪 19180 韫 19181 韬 19182 韭 19183 韮 19184 韲 19185 音 19186 韵 19187 韶 19188 韻 19189 響 19190 頁 19191 頂 19192 頃 19193 項 19194 順 19195 須 19196 頌 19197 頏 19198 預 19199 頑 19200 頒 19201 頓 19202 頗 19203 領 19204 頚 19205 頠 19206 頡 19207 頤 19208 頫 19209 頬 19210 頭 19211 頰 19212 頴 19213 頷 19214 頸 19215 頹 19216 頻 19217 頼 19218 頽 19219 顆 19220 顋 19221 題 19222 額 19223 顎 19224 顏 19225 顒 19226 顔 19227 顕 19228 顗 19229 願 19230 顛 19231 類 19232 顧 19233 顫 19234 顬 19235 顯 19236 顰 19237 顱 19238 顳 19239 顴 19240 页 19241 顶 19242 顷 19243 顸 19244 项 19245 顺 19246 须 19247 顼 19248 顽 19249 顾 19250 顿 19251 颀 19252 颁 19253 颂 19254 预 19255 颅 19256 领 19257 颇 19258 颈 19259 颉 19260 颊 19261 颋 19262 颌 19263 颍 19264 颎 19265 颏 19266 颐 19267 频 19268 颓 19269 颔 19270 颖 19271 颗 19272 题 19273 颙 19274 颚 19275 颛 19276 颜 19277 额 19278 颞 19279 颟 19280 颠 19281 颡 19282 颢 19283 颤 19284 颦 19285 颧 19286 風 19287 颪 19288 颯 19289 颱 19290 颶 19291 飄 19292 飆 19293 飊 19294 风 19295 飐 19296 飒 19297 飓 19298 飕 19299 飖 19300 飗 19301 飘 19302 飙 19303 飚 19304 飛 19305 飞 19306 食 19307 飢 19308 飧 19309 飨 19310 飩 19311 飪 19312 飫 19313 飭 19314 飯 19315 飲 19316 飴 19317 飼 19318 飽 19319 飾 19320 餃 19321 餅 19322 餉 19323 養 19324 餌 19325 餍 19326 餐 19327 餑 19328 餒 19329 餓 19330 餘 19331 餚 19332 餝 19333 餞 19334 餠 19335 餡 19336 館 19337 餬 19338 餮 19339 餵 19340 餸 19341 饂 19342 饅 19343 饉 19344 饋 19345 饌 19346 饐 19347 饑 19348 饒 19349 饔 19350 饕 19351 饗 19352 饤 19353 饥 19354 饧 19355 饨 19356 饪 19357 饬 19358 饭 19359 饮 19360 饯 19361 饰 19362 饱 19363 饲 19364 饴 19365 饵 19366 饶 19367 饷 19368 饸 19369 饹 19370 饺 19371 饼 19372 饽 19373 饿 19374 馀 19375 馁 19376 馃 19377 馄 19378 馅 19379 馆 19380 馇 19381 馈 19382 馊 19383 馋 19384 馍 19385 馏 19386 馐 19387 馑 19388 馒 19389 馓 19390 馔 19391 馕 19392 首 19393 馗 19394 馘 19395 香 19396 馥 19397 馨 19398 馬 19399 馭 19400 馮 19401 馳 19402 馴 19403 馿 19404 駁 19405 駃 19406 駄 19407 駅 19408 駆 19409 駈 19410 駐 19411 駑 19412 駒 19413 駕 19414 駘 19415 駛 19416 駝 19417 駟 19418 駢 19419 駭 19420 駮 19421 駱 19422 駸 19423 駻 19424 駿 19425 騁 19426 騎 19427 騏 19428 騑 19429 騒 19430 験 19431 騕 19432 騖 19433 騙 19434 騠 19435 騨 19436 騮 19437 騰 19438 騷 19439 騾 19440 驀 19441 驃 19442 驅 19443 驍 19444 驕 19445 驗 19446 驚 19447 驛 19448 驟 19449 驢 19450 驥 19451 驩 19452 驪 19453 驫 19454 马 19455 驭 19456 驮 19457 驯 19458 驰 19459 驱 19460 驳 19461 驴 19462 驶 19463 驷 19464 驸 19465 驹 19466 驺 19467 驻 19468 驼 19469 驽 19470 驾 19471 驿 19472 骀 19473 骁 19474 骂 19475 骄 19476 骅 19477 骆 19478 骇 19479 骈 19480 骊 19481 骋 19482 验 19483 骍 19484 骎 19485 骏 19486 骐 19487 骑 19488 骒 19489 骓 19490 骕 19491 骖 19492 骗 19493 骘 19494 骚 19495 骛 19496 骜 19497 骝 19498 骞 19499 骟 19500 骠 19501 骡 19502 骢 19503 骤 19504 骥 19505 骧 19506 骨 19507 骯 19508 骰 19509 骶 19510 骷 19511 骸 19512 骺 19513 骼 19514 髀 19515 髁 19516 髂 19517 髃 19518 髄 19519 髅 19520 髈 19521 髋 19522 髌 19523 髎 19524 髏 19525 髑 19526 髒 19527 髓 19528 體 19529 高 19530 髙 19531 髟 19532 髡 19533 髢 19534 髣 19535 髦 19536 髪 19537 髫 19538 髭 19539 髮 19540 髯 19541 髱 19542 髴 19543 髷 19544 髹 19545 髻 19546 髽 19547 鬃 19548 鬄 19549 鬆 19550 鬍 19551 鬏 19552 鬐 19553 鬓 19554 鬘 19555 鬚 19556 鬟 19557 鬢 19558 鬣 19559 鬥 19560 鬧 19561 鬨 19562 鬩 19563 鬮 19564 鬯 19565 鬱 19566 鬲 19567 鬶 19568 鬻 19569 鬼 19570 魁 19571 魂 19572 魃 19573 魄 19574 魅 19575 魇 19576 魈 19577 魉 19578 魍 19579 魎 19580 魏 19581 魑 19582 魔 19583 魘 19584 魚 19585 魟 19586 魣 19587 魦 19588 魬 19589 魯 19590 魳 19591 魴 19592 魵 19593 鮀 19594 鮃 19595 鮄 19596 鮉 19597 鮊 19598 鮋 19599 鮎 19600 鮏 19601 鮐 19602 鮑 19603 鮒 19604 鮓 19605 鮔 19606 鮖 19607 鮗 19608 鮟 19609 鮠 19610 鮧 19611 鮨 19612 鮪 19613 鮫 19614 鮭 19615 鮮 19616 鮱 19617 鮲 19618 鮴 19619 鮸 19620 鮹 19621 鯀 19622 鯆 19623 鯇 19624 鯉 19625 鯊 19626 鯎 19627 鯏 19628 鯑 19629 鯒 19630 鯔 19631 鯖 19632 鯛 19633 鯡 19634 鯢 19635 鯣 19636 鯥 19637 鯧 19638 鯨 19639 鯪 19640 鯰 19641 鯱 19642 鯲 19643 鯳 19644 鯵 19645 鯷 19646 鯽 19647 鰄 19648 鰆 19649 鰈 19650 鰉 19651 鰊 19652 鰌 19653 鰍 19654 鰐 19655 鰑 19656 鰒 19657 鰓 19658 鰔 19659 鰕 19660 鰖 19661 鰘 19662 鰙 19663 鰚 19664 鰡 19665 鰤 19666 鰥 19667 鰧 19668 鰭 19669 鰮 19670 鰯 19671 鰰 19672 鰲 19673 鰶 19674 鰹 19675 鰺 19676 鰻 19677 鰾 19678 鱀 19679 鱅 19680 鱆 19681 鱇 19682 鱈 19683 鱏 19684 鱒 19685 鱓 19686 鱗 19687 鱘 19688 鱚 19689 鱝 19690 鱠 19691 鱧 19692 鱮 19693 鱰 19694 鱵 19695 鱶 19696 鱸 19697 鱼 19698 鱿 19699 鲀 19700 鲁 19701 鲂 19702 鲅 19703 鲇 19704 鲈 19705 鲊 19706 鲋 19707 鲌 19708 鲍 19709 鲐 19710 鲑 19711 鲒 19712 鲔 19713 鲖 19714 鲚 19715 鲛 19716 鲜 19717 鲞 19718 鲟 19719 鲠 19720 鲡 19721 鲢 19722 鲣 19723 鲤 19724 鲥 19725 鲦 19726 鲧 19727 鲨 19728 鲩 19729 鲫 19730 鲭 19731 鲮 19732 鲱 19733 鲲 19734 鲳 19735 鲴 19736 鲵 19737 鲶 19738 鲷 19739 鲸 19740 鲻 19741 鲼 19742 鲽 19743 鳀 19744 鳃 19745 鳄 19746 鳅 19747 鳇 19748 鳉 19749 鳊 19750 鳌 19751 鳍 19752 鳎 19753 鳏 19754 鳐 19755 鳔 19756 鳕 19757 鳖 19758 鳗 19759 鳙 19760 鳜 19761 鳝 19762 鳞 19763 鳟 19764 鳣 19765 鳥 19766 鳧 19767 鳩 19768 鳫 19769 鳰 19770 鳳 19771 鳴 19772 鳶 19773 鴂 19774 鴃 19775 鴆 19776 鴇 19777 鴈 19778 鴉 19779 鴋 19780 鴎 19781 鴐 19782 鴒 19783 鴛 19784 鴞 19785 鴟 19786 鴣 19787 鴦 19788 鴨 19789 鴫 19790 鴬 19791 鴲 19792 鴻 19793 鴾 19794 鴿 19795 鵀 19796 鵄 19797 鵆 19798 鵇 19799 鵐 19800 鵑 19801 鵙 19802 鵜 19803 鵝 19804 鵞 19805 鵟 19806 鵠 19807 鵡 19808 鵤 19809 鵫 19810 鵬 19811 鵯 19812 鵰 19813 鵲 19814 鵺 19815 鵼 19816 鶇 19817 鶉 19818 鶏 19819 鶒 19820 鶖 19821 鶗 19822 鶚 19823 鶡 19824 鶤 19825 鶩 19826 鶫 19827 鶯 19828 鶲 19829 鶴 19830 鶸 19831 鶺 19832 鶻 19833 鷁 19834 鷂 19835 鷃 19836 鷆 19837 鷓 19838 鷙 19839 鷚 19840 鷠 19841 鷦 19842 鷭 19843 鷯 19844 鷲 19845 鷸 19846 鷹 19847 鷺 19848 鷽 19849 鸂 19850 鸙 19851 鸚 19852 鸛 19853 鸞 19854 鸟 19855 鸠 19856 鸡 19857 鸢 19858 鸣 19859 鸥 19860 鸦 19861 鸨 19862 鸩 19863 鸪 19864 鸫 19865 鸬 19866 鸭 19867 鸮 19868 鸯 19869 鸰 19870 鸱 19871 鸳 19872 鸵 19873 鸶 19874 鸷 19875 鸸 19876 鸹 19877 鸽 19878 鸾 19879 鸿 19880 鹀 19881 鹁 19882 鹂 19883 鹃 19884 鹄 19885 鹅 19886 鹆 19887 鹇 19888 鹈 19889 鹉 19890 鹊 19891 鹋 19892 鹌 19893 鹎 19894 鹏 19895 鹑 19896 鹕 19897 鹖 19898 鹗 19899 鹘 19900 鹚 19901 鹜 19902 鹞 19903 鹣 19904 鹤 19905 鹦 19906 鹧 19907 鹨 19908 鹩 19909 鹪 19910 鹫 19911 鹬 19912 鹭 19913 鹮 19914 鹯 19915 鹰 19916 鹱 19917 鹳 19918 鹵 19919 鹸 19920 鹹 19921 鹽 19922 鹾 19923 鹿 19924 麁 19925 麂 19926 麇 19927 麈 19928 麋 19929 麒 19930 麓 19931 麕 19932 麗 19933 麝 19934 麞 19935 麟 19936 麥 19937 麦 19938 麩 19939 麪 19940 麭 19941 麴 19942 麵 19943 麸 19944 麹 19945 麺 19946 麻 19947 麼 19948 麽 19949 麾 19950 麿 19951 黃 19952 黄 19953 黉 19954 黌 19955 黍 19956 黎 19957 黏 19958 黐 19959 黑 19960 黒 19961 黔 19962 默 19963 黙 19964 黛 19965 黜 19966 黝 19967 點 19968 黟 19969 黠 19970 黡 19971 黢 19972 黥 19973 黧 19974 黨 19975 黩 19976 黯 19977 黴 19978 黹 19979 黻 19980 黼 19981 黽 19982 鼇 19983 鼈 19984 鼋 19985 鼍 19986 鼎 19987 鼐 19988 鼓 19989 龝 19990 齦 19991 鼻 19992 齋 19993 x 19994 龉 19995 龇 19996 鼡 19997 齧 19998 龍 19999 齡 20000 鼯 20001 鼱 20002 鼠 20003 齊 20004 龙 20005 龃 20006 龐 20007 鼬 20008 龈 20009 齟 20010 龄 20011 鼾 20012 龊 20013 龕 20014 鼪 20015 龢 20016 齣 20017 齉 20018 齲 20019 齎 20020 鼹 20021 𠱁 20022 鼩 20023 齷 20024 龋 20025 齑 20026 龛 20027 齁 20028 齿 20029 龜 20030 齐 20031 齔 20032 鼢 20033 龅 20034 齒 20035 龚 20036 齬 20037 龌 20038 龠 20039 齪 20040 龟 20041 y 20042 齢 20043 鼕 20044 鼙 20045 ! 20046 을 20047 의 20048 이 20049 에 20050 는 20051 를 20052 가 20053 은 20054 ▁수 20055 도 20056 한 20057 고 20058 로 20059 ▁이 20060 과 20061 에서 20062 지 20063 으로 20064 기 20065 다 20066 하는 20067 인 20068 해 20069 와 20070 하고 20071 ▁있다 20072 할 20073 ▁그 20074 일 20075 ▁있는 20076 리 20077 ▁한 20078 어 20079 사 20080 시 20081 서 20082 자 20083 만 20084 게 20085 ▁있습니다 20086 ▁전 20087 스 20088 면 20089 년 20090 수 20091 ▁고 20092 했다 20093 ▁가 20094 대 20095 적 20096 라 20097 나 20098 주 20099 하게 20100 아 20101 성 20102 상 20103 원 20104 이다 20105 장 20106 ▁일 20107 ▁주 20108 ▁더 20109 ▁내 20110 적인 20111 진 20112 정 20113 화 20114 드 20115 된 20116 부 20117 ▁대 20118 ▁할 20119 ▁유 20120 ▁보 20121 ▁것 20122 ▁사 20123 ▁시 20124 ▁중 20125 ▁대한 20126 ▁지 20127 ▁때 20128 들이 20129 요 20130 ▁다 20131 ▁것이 20132 전 20133 ▁정 20134 제 20135 구 20136 야 20137 ▁부 20138 ▁안 20139 치 20140 ▁및 20141 ▁나 20142 월 20143 트 20144 한다 20145 보 20146 하기 20147 ▁한다 20148 ▁신 20149 입니다 20150 에게 20151 ▁것이다 20152 소 20153 ▁말 20154 하지 20155 ▁등 20156 ▁기 20157 적으로 20158 ▁비 20159 ▁해 20160 ▁위해 20161 합니다 20162 신 20163 에는 20164 산 20165 선 20166 위 20167 ▁소 20168 ▁자 20169 관 20170 하 20171 비 20172 ▁마 20173 니 20174 러 20175 세 20176 ▁하는 20177 까지 20178 들 20179 ▁아 20180 당 20181 ▁상 20182 용 20183 ▁제 20184 ▁인 20185 ▁오 20186 ▁두 20187 ▁다른 20188 려 20189 단 20190 ▁하 20191 ▁공 20192 며 20193 우 20194 동 20195 ▁무 20196 ▁후 20197 하여 20198 조 20199 ▁것은 20200 ▁미 20201 ▁원 20202 명 20203 히 20204 ▁바 20205 르 20206 실 20207 마 20208 ▁김 20209 ▁많은 20210 국 20211 여 20212 ▁가장 20213 ▁동 20214 분 20215 ▁잘 20216 방 20217 회 20218 ▁구 20219 행 20220 식 20221 ▁거 20222 ▁연 20223 차 20224 ▁통해 20225 계 20226 ▁세 20227 던 20228 체 20229 ▁조 20230 ▁한국 20231 중 20232 재 20233 ▁같은 20234 ▁함께 20235 질 20236 ▁모 20237 미 20238 ▁모든 20239 ▁경우 20240 연 20241 학 20242 호 20243 ▁때문에 20244 ▁사용 20245 ▁것을 20246 안 20247 ▁불 20248 들은 20249 ▁하지만 20250 ▁도 20251 ▁될 20252 들을 20253 개 20254 ▁선 20255 물 20256 ▁재 20257 ▁우리 20258 ▁입 20259 ▁성 20260 ▁의 20261 ▁강 20262 ▁스 20263 무 20264 ▁생각 20265 문 20266 ▁저 20267 이나 20268 해야 20269 간 20270 내 20271 ▁장 20272 ▁서 20273 되는 20274 운 20275 부터 20276 경 20277 ▁어 20278 ▁그리고 20279 하면 20280 ▁여 20281 들의 20282 ▁발 20283 하다 20284 ▁단 20285 ▁당 20286 오 20287 금 20288 ▁명 20289 공 20290 ▁물 20291 크 20292 ▁것으로 20293 ▁했다 20294 ▁양 20295 ▁배 20296 법 20297 형 20298 ▁또 20299 ▁간 20300 ▁개 20301 ▁또한 20302 ▁그러나 20303 ▁이런 20304 ▁차 20305 ▁큰 20306 민 20307 ▁다양한 20308 생 20309 었다 20310 ▁남 20311 력 20312 유 20313 ▁따라 20314 지만 20315 권 20316 ▁게 20317 모 20318 ▁경 20319 ▁위 20320 ▁없는 20321 ▁하나 20322 에서는 20323 워 20324 ▁시작 20325 ▁파 20326 ▁아니라 20327 ▁대해 20328 ▁만 20329 ▁실 20330 ▁알 20331 ▁없다 20332 하며 20333 ▁합니다 20334 ▁된다 20335 감 20336 ▁많이 20337 영 20338 ▁지역 20339 ▁반 20340 건 20341 ▁데 20342 ▁방 20343 ▁위한 20344 직 20345 거 20346 ▁하고 20347 ▁어떤 20348 ▁세계 20349 ▁적 20350 양 20351 ▁분 20352 점 20353 데 20354 보다 20355 ▁좋은 20356 습니다 20357 ▁열 20358 ▁미국 20359 ▁초 20360 역 20361 면서 20362 터 20363 된다 20364 ▁다시 20365 심 20366 파 20367 ▁어떻게 20368 종 20369 타 20370 ▁본 20371 ▁살 20372 급 20373 ▁중국 20374 ▁진 20375 ▁손 20376 래 20377 ▁줄 20378 ▁매 20379 석 20380 ▁여행 20381 ▁피 20382 ▁이상 20383 교 20384 ▁지난 20385 ▁집 20386 ▁모두 20387 약 20388 프 20389 린 20390 ▁자동 20391 라는 20392 라고 20393 ▁감 20394 포 20395 ▁있도록 20396 ▁진행 20397 토 20398 ▁박 20399 음 20400 ▁것입니다 20401 ▁못 20402 천 20403 지는 20404 ▁우 20405 란 20406 ▁또는 20407 ▁노 20408 ▁포 20409 ▁화 20410 군 20411 달 20412 입 20413 업 20414 ▁이용 20415 ▁되 20416 ▁현재 20417 ▁타 20418 ▁걸 20419 저 20420 해서 20421 ▁그런 20422 바 20423 까 20424 ▁번 20425 ▁건 20426 될 20427 청 20428 디 20429 ▁최 20430 ▁예 20431 ▁이후 20432 증 20433 임 20434 ▁일본 20435 속 20436 ▁외 20437 티 20438 ▁특히 20439 격 20440 ▁볼 20441 료 20442 ▁있을 20443 ▁지금 20444 ▁관련 20445 ▁아이 20446 ▁들 20447 ▁들어 20448 레 20449 ▁문제 20450 두 20451 출 20452 되어 20453 ▁이번 20454 에도 20455 ▁산 20456 작 20457 설 20458 ▁사회 20459 ▁시간 20460 ▁사실 20461 ▁있었다 20462 ▁된 20463 ▁그는 20464 즈 20465 ▁날 20466 발 20467 ▁뒤 20468 ▁새로운 20469 매 20470 처럼 20471 ▁나는 20472 온 20473 난 20474 ▁교육 20475 ▁출 20476 ▁각 20477 ▁편 20478 ▁지원 20479 ▁호 20480 ▁심 20481 ▁영 20482 ▁계 20483 ▁서비스 20484 는데 20485 ▁바로 20486 들에게 20487 ▁정도 20488 ▁문 20489 ▁시장 20490 이라는 20491 길 20492 품 20493 ▁선택 20494 절 20495 기를 20496 ▁이어 20497 색 20498 되고 20499 목 20500 았다 20501 ▁여러 20502 ▁가지 20503 류 20504 ▁법 20505 ▁에 20506 거나 20507 ▁서울 20508 ▁다음 20509 키 20510 ▁달 20511 ▁확인 20512 ▁약 20513 ▁제공 20514 ▁교 20515 립 20516 ▁사람 20517 ▁동안 20518 피 20519 릴 20520 ▁자신의 20521 ▁영화 20522 ▁과 20523 ▁없 20524 배 20525 ▁치 20526 ▁맞 20527 ▁기업 20528 ▁국 20529 ▁이러한 20530 ▁않고 20531 네 20532 카 20533 ▁이야기 20534 ▁그래서 20535 ▁속 20536 ▁연구 20537 그 20538 ▁만들어 20539 ▁눈 20540 져 20541 ▁우리는 20542 강 20543 통 20544 ▁최근 20545 ▁국가 20546 ▁책 20547 루 20548 집 20549 님 20550 ▁임 20551 판 20552 죠 20553 른 20554 ▁시설 20555 ▁때문이다 20556 울 20557 하면서 20558 ▁추 20559 ▁않은 20560 ▁정보 20561 했습니다 20562 든 20563 ▁곳 20564 각 20565 ▁총 20566 ▁않을 20567 림 20568 ▁않는 20569 태 20570 향 20571 후 20572 ▁생 20573 ▁결과 20574 ▁되는 20575 ▁학 20576 ▁찾아 20577 결 20578 등 20579 ▁있다는 20580 였다 20581 버 20582 론 20583 ▁게임 20584 ▁말했다 20585 ▁채 20586 ▁사람이 20587 ▁있어 20588 성을 20589 현 20590 ▁보다 20591 환 20592 ▁관 20593 이라고 20594 ▁고객 20595 ▁몸 20596 량 20597 ▁막 20598 ▁귀 20599 ▁먹 20600 ▁변 20601 ▁기술 20602 ▁로 20603 ▁너무 20604 ▁새 20605 ▁물론 20606 ▁제품 20607 ▁경제 20608 날 20609 ▁직접 20610 남 20611 ▁준비 20612 합 20613 ▁사업 20614 ▁천 20615 노 20616 박 20617 됩니다 20618 ▁용 20619 엔 20620 ▁메 20621 스트 20622 ▁운영 20623 ▁있 20624 ▁개발 20625 자가 20626 ▁없이 20627 ▁코 20628 ▁내가 20629 ▁토 20630 ▁매우 20631 담 20632 ▁금 20633 언 20634 시간 20635 ▁그런데 20636 능 20637 준 20638 ▁리 20639 ▁종 20640 ▁회사 20641 ▁복 20642 ▁사항을 20643 ▁국내 20644 으며 20645 ▁사진 20646 ▁몇 20647 으면 20648 ▁이렇게 20649 처 20650 름 20651 ▁노력 20652 ▁애 20653 ▁수도 20654 케 20655 락 20656 이었다 20657 ▁첫 20658 복 20659 ▁대표 20660 ▁더욱 20661 됐다 20662 ▁통 20663 ▁역사 20664 ▁의미 20665 ▁호텔 20666 ▁온 20667 갈 20668 ▁식 20669 ▁어느 20670 ▁이해 20671 ▁년 20672 ▁청 20673 ▁문화 20674 했던 20675 편 20676 ▁관리 20677 ▁여성 20678 외 20679 ▁상태 20680 ▁바랍니다 20681 ▁처음 20682 망 20683 병 20684 령 20685 ▁결정 20686 졌다 20687 ▁있고 20688 션 20689 층 20690 리는 20691 ▁북한 20692 ▁잡 20693 ▁좀 20694 으 20695 근 20696 별 20697 브 20698 ▁현 20699 ▁당시 20700 ▁순 20701 승 20702 ▁것도 20703 ▁기대 20704 ▁허 20705 평 20706 더 20707 ▁역시 20708 ▁보고 20709 ▁회 20710 반 20711 ▁필요 20712 ▁개인 20713 ▁설명 20714 ▁일부 20715 ▁정말 20716 ▁올 20717 초 20718 ▁군 20719 너 20720 백 20721 지고 20722 함 20723 ▁계속 20724 ▁마음 20725 ▁가지고 20726 ▁사람들이 20727 ▁않는다 20728 술 20729 ▁가격 20730 ▁권 20731 ▁담 20732 ▁길 20733 ▁작품 20734 ▁사랑 20735 되지 20736 ▁목 20737 ▁부분 20738 ▁건강 20739 ▁돌 20740 ▁보면 20741 ▁해당 20742 ▁참 20743 ▁환경 20744 북 20745 ▁아니 20746 ▁중요한 20747 기도 20748 ▁난 20749 ▁자기 20750 ▁있으며 20751 ▁백 20752 ▁쓰 20753 ▁이미 20754 ▁참여 20755 ▁창 20756 ▁아닌 20757 ▁이를 20758 창 20759 ▁존재 20760 ▁글 20761 ▁우리가 20762 ▁경기 20763 ▁대학 20764 ▁드 20765 추 20766 ▁없습니다 20767 겨 20768 ▁학교 20769 들과 20770 기에 20771 열 20772 ▁추가 20773 ▁해결 20774 ▁치료 20775 ▁성장 20776 독 20777 ▁전체 20778 ▁변화 20779 율 20780 ▁아니다 20781 ▁높은 20782 ▁체 20783 ▁회원 20784 투 20785 코 20786 ▁농 20787 ▁요 20788 예 20789 ▁평 20790 ▁제안 20791 대로 20792 ▁왜 20793 ▁이제 20794 ▁있다고 20795 ▁월 20796 ▁나라 20797 ▁포함 20798 ▁공간 20799 축 20800 ▁점 20801 ▁필요한 20802 지를 20803 ▁등을 20804 ▁말씀 20805 하거나 20806 있는 20807 ▁쉽게 20808 ▁않 20809 ▁정책 20810 ▁같이 20811 ▁활동 20812 ▁않았다 20813 ▁같다 20814 ▁투자 20815 ▁생활 20816 ▁되어 20817 주의 20818 익 20819 ▁정치 20820 ▁죽 20821 ▁요구 20822 ▁활용 20823 ▁그렇게 20824 살 20825 책 20826 ▁커 20827 진다 20828 ▁평가 20829 례 20830 ▁성공 20831 도록 20832 ▁정부 20833 에서도 20834 ▁오늘 20835 ▁일이 20836 쪽 20837 ▁안전 20838 ▁몰 20839 ▁표시 20840 ▁경험 20841 었습니다 20842 ▁유지 20843 ▁해야 20844 ▁도시 20845 ▁올해 20846 ▁라고 20847 ▁않습니다 20848 표 20849 ▁있기 20850 어요 20851 ▁취 20852 ▁먼저 20853 되 20854 ▁사이 20855 ▁검토 20856 니까 20857 ▁인간 20858 ▁와 20859 철 20860 ▁주장 20861 침 20862 다는 20863 ▁적용 20864 ▁번역 20865 친 20866 탄 20867 ▁시대 20868 ▁결국 20869 ▁삼 20870 ▁사건 20871 ▁수정 20872 ▁시스템 20873 ▁가족 20874 ▁따라서 20875 ▁독 20876 ▁늘 20877 ▁레 20878 ▁갈 20879 ▁앞으로 20880 니다 20881 사를 20882 ▁카 20883 ▁질문 20884 ▁역 20885 번 20886 습 20887 ▁광 20888 ▁만나 20889 긴 20890 ▁북 20891 ▁하지 20892 움 20893 ▁아래 20894 ▁절 20895 ▁읽 20896 볼 20897 ▁결 20898 ▁자리 20899 본 20900 ▁계획 20901 돼 20902 순 20903 ▁태 20904 ▁발전 20905 ▁기록 20906 ▁됩니다 20907 ▁팀 20908 ▁크 20909 ▁밝혔다 20910 ▁되었다 20911 착 20912 ▁세상 20913 ▁국민 20914 ▁설 20915 ▁의견을 20916 ▁버 20917 ▁이것은 20918 ▁살아 20919 ▁발생 20920 ▁분석 20921 었 20922 쳐 20923 자는 20924 ▁현실 20925 ▁듯 20926 말 20927 ▁수준 20928 ▁운동 20929 ▁놓 20930 ▁있지만 20931 광 20932 ▁그의 20933 ▁방문 20934 ▁배우 20935 기가 20936 ▁끝 20937 ▁방법 20938 ▁뜻 20939 ▁합 20940 ▁서로 20941 ▁접 20942 ▁생산 20943 ▁않다 20944 ▁발표 20945 ▁하나님 20946 ▁하루 20947 링 20948 ▁급 20949 애 20950 ▁표현 20951 ▁병 20952 ▁싶 20953 ▁음식 20954 ▁정보를 20955 ▁좋아 20956 ▁아직 20957 ▁미래 20958 ▁인터넷 20959 없이 20960 ▁모습 20961 ▁은 20962 ▁크게 20963 씨 20964 ▁야 20965 ▁알고 20966 렸다 20967 ▁판매 20968 ▁프로그램 20969 ▁교회 20970 ▁받아 20971 팅 20972 ▁직 20973 ▁앞 20974 ▁관계 20975 ▁구성 20976 다고 20977 랑 20978 ▁자신 20979 ▁높 20980 ▁조금 20981 았 20982 ▁승 20983 족 20984 ▁만들 20985 ▁베 20986 ▁키 20987 ▁믿 20988 ▁작은 20989 ▁현대 20990 ▁예약 20991 플 20992 ▁아이들 20993 ▁자연 20994 규 20995 ▁전문 20996 력을 20997 범 20998 항 20999 ▁만큼 21000 이며 21001 련 21002 ▁테 21003 ▁있었 21004 ▁대통령 21005 장은 21006 ▁찾 21007 ▁패 21008 ▁이유 21009 네요 21010 성이 21011 ▁않았 21012 ▁기억 21013 ▁골 21014 테 21015 ▁행 21016 ▁증가 21017 ▁밀 21018 ▁별 21019 ▁돌아 21020 ▁대부분 21021 ▁문제가 21022 ▁감사합니다 21023 송 21024 ▁누 21025 ▁넘 21026 ▁마련 21027 ▁질 21028 이라 21029 ▁증 21030 ▁가능 21031 ▁잠 21032 ▁형 21033 ▁감독 21034 ▁행복 21035 ▁환 21036 황 21037 ▁제가 21038 ▁이름 21039 ▁공개 21040 있 21041 장을 21042 ▁민 21043 ▁황 21044 ▁거의 21045 극 21046 ▁가운데 21047 ▁맛 21048 악 21049 셔 21050 막 21051 ▁있으나 21052 ▁기존 21053 ▁소개 21054 ▁디자인 21055 자를 21056 ▁기능 21057 커 21058 ▁설치 21059 ▁산업 21060 ▁온라인 21061 변 21062 ▁목표 21063 ▁번째 21064 ▁악 21065 ▁폭 21066 자의 21067 감을 21068 불 21069 록 21070 ▁보호 21071 ▁행사 21072 ▁표 21073 ▁침 21074 택 21075 ▁투 21076 ▁향 21077 ▁스스로 21078 ▁기자 21079 ▁시간이 21080 ▁기간 21081 ▁없어 21082 ▁일을 21083 희 21084 런 21085 줄 21086 로서 21087 ▁기본 21088 ▁상품 21089 ▁특 21090 ▁내용 21091 ▁인해 21092 ▁탈 21093 ▁지난해 21094 받 21095 ▁지나 21096 ▁있게 21097 ▁하면 21098 리를 21099 ▁학생 21100 ▁협 21101 ▁여러분의 21102 ▁충 21103 활 21104 ▁연결 21105 ▁공부 21106 ▁제대로 21107 ▁보내 21108 곤 21109 ▁터 21110 ▁음악 21111 ▁주변 21112 ▁돈 21113 ▁방송 21114 ▁환자 21115 ▁이는 21116 ▁떠 21117 ▁고민 21118 ▁네 21119 ▁가능한 21120 ▁위치 21121 곡 21122 ▁우리의 21123 졌 21124 ▁무료 21125 ▁위험 21126 ▁며 21127 ▁이날 21128 ▁꼭 21129 ▁즉 21130 ▁같 21131 ▁주요 21132 ▁많다 21133 ▁삶 21134 흥 21135 찰 21136 올 21137 ▁전에 21138 ▁그림 21139 ▁저는 21140 ▁암 21141 ▁벌 21142 ▁철 21143 ▁이라고 21144 압 21145 ▁영향을 21146 ▁국제 21147 염 21148 ▁보인다 21149 십 21150 ▁함 21151 ▁학생들 21152 확 21153 ▁힘 21154 ▁조사 21155 객 21156 ▁면 21157 ▁등의 21158 ▁아주 21159 ▁작업 21160 ▁행동 21161 ▁과거 21162 ▁때문 21163 퍼 21164 ▁왕 21165 베 21166 ▁과정 21167 ▁우리나라 21168 ▁있기를 21169 ▁발견 21170 레이 21171 ▁의원 21172 ▁꿈 21173 채 21174 ▁사람은 21175 ▁모습을 21176 ▁구조 21177 글 21178 ▁육 21179 ▁방식 21180 ▁시간을 21181 ▁숙박 21182 ▁했 21183 점을 21184 ▁있어서 21185 하였다 21186 ▁처 21187 ▁트 21188 ▁도움이 21189 칠 21190 팀 21191 인데 21192 ▁음 21193 ▁자유 21194 ▁일반 21195 ▁친 21196 ▁놀 21197 었던 21198 ▁팔 21199 ▁됐다 21200 기는 21201 ▁가진 21202 ▁변경 21203 률 21204 ▁해외 21205 마다 21206 ▁항 21207 했고 21208 거리 21209 ▁현장 21210 ▁개선 21211 ▁후보 21212 ▁극 21213 ▁다만 21214 ▁집중 21215 ▁근 21216 위원회 21217 ▁의사 21218 ▁얘기 21219 ▁구매 21220 ▁프로 21221 ▁관한 21222 ▁감사 21223 ▁이에 21224 되었다 21225 때 21226 ▁사이트 21227 ▁올라 21228 ▁맡 21229 ▁사람들 21230 ▁추진 21231 ▁서비스를 21232 ▁고려 21233 협 21234 께 21235 ▁풀 21236 ▁계획에 21237 였 21238 ▁중입니다 21239 ▁여행자들 21240 ▁넘어 21241 ▁씨 21242 ▁되고 21243 ▁친구 21244 ▁붙 21245 ▁브랜드 21246 훈 21247 ▁처리 21248 ▁둘 21249 ▁나오 21250 ▁순간 21251 ▁조금이나마 21252 ▁조직 21253 ▁같습니다 21254 ▁사용자 21255 ▁낮 21256 ▁상황 21257 메 21258 ▁사고 21259 ▁한국어로 21260 들도 21261 왔다 21262 ▁자체 21263 ▁받고 21264 ▁힘들 21265 ▁뿐 21266 밀 21267 ▁선수 21268 ▁없었다 21269 ▁여기 21270 ▁판 21271 더라도 21272 사가 21273 ▁업무 21274 ▁회원님의 21275 액 21276 ▁작 21277 ▁그것은 21278 하지만 21279 ▁개인정보 21280 ▁피부 21281 ▁예상 21282 ▁입장 21283 리고 21284 하십시오 21285 ▁거리 21286 ▁달라 21287 ▁풍 21288 ▁작가 21289 ▁비용 21290 ▁많 21291 머 21292 ▁오래 21293 ▁리뷰는 21294 ▁완벽하지 21295 ▁사람들은 21296 ▁제작 21297 ▁업체 21298 ▁퀄리티가 21299 ▁이동 21300 ▁싶다 21301 ▁강화 21302 숙 21303 ▁번역되었습니다 21304 헌 21305 ▁분위기 21306 ▁싶은 21307 ▁보여 21308 ▁의해 21309 ▁문제를 21310 ▁느끼 21311 ▁항상 21312 ▁신청 21313 ▁윤 21314 취 21315 ▁참고가 21316 ▁참고하실 21317 ▁판단 21318 ▁실제 21319 ▁지적 21320 ▁번역을 21321 ▁소리 21322 ▁정신 21323 ▁반대 21324 ▁대상 21325 어서 21326 ▁얼마나 21327 ▁실제로 21328 ▁분야 21329 ▁숨 21330 ▁공격 21331 위를 21332 ▁정도로 21333 ▁이야기를 21334 낼 21335 ▁달리 21336 ▁기준 21337 ▁자신이 21338 ▁디 21339 ▁검색 21340 ▁번역의 21341 ▁따 21342 장이 21343 한다는 21344 하실 21345 ▁브 21346 ▁효과 21347 ▁라 21348 ▁운 21349 ▁따르면 21350 ▁객실 21351 ▁클 21352 ▁경찰 21353 사회 21354 ▁받은 21355 ▁그대로 21356 다면 21357 ▁책임 21358 혀 21359 충 21360 하도록 21361 ▁필 21362 ▁경쟁 21363 ▁들어가 21364 것 21365 널 21366 했 21367 ▁부담 21368 ▁역할을 21369 갔다 21370 ▁한번 21371 ▁가치 21372 ▁이용자 21373 교육 21374 ▁전략 21375 ▁위해서 21376 ▁금융 21377 낸 21378 ▁해서 21379 ▁속에서 21380 견 21381 ▁피해 21382 ▁거래 21383 ▁최대 21384 ▁있는데 21385 ▁그러 21386 라도 21387 ▁등장 21388 ▁내려 21389 블 21390 ▁일정 21391 ▁대신 21392 ▁자료 21393 ▁필요하다 21394 ▁지방 21395 냈다 21396 ▁지속 21397 ▁확대 21398 ▁않아 21399 ▁우선 21400 시장 21401 ▁만드는 21402 ▁겪 21403 ▁밤 21404 페 21405 ▁얼굴 21406 ▁대해서 21407 ▁비교 21408 ▁좋다 21409 ▁페 21410 화를 21411 ▁말을 21412 ▁바람 21413 츠 21414 인지 21415 ▁가져 21416 ▁선거 21417 효 21418 탁 21419 ▁이미지 21420 ▁최고 21421 냐 21422 ▁폐 21423 주는 21424 ▁인식 21425 로부터 21426 명이 21427 개월 21428 로운 21429 이고 21430 ▁누구 21431 ▁갖고 21432 돌 21433 ▁교수 21434 ▁좋 21435 ▁이곳 21436 ▁인기 21437 렸 21438 ▁등록 21439 ▁과학 21440 린다 21441 까요 21442 ▁하다 21443 ▁오히려 21444 득 21445 ▁모델 21446 ▁광고 21447 ▁경우가 21448 력이 21449 척 21450 틀 21451 ▁추천 21452 총 21453 람 21454 ▁잔 21455 ▁한다는 21456 ▁해도 21457 ▁송 21458 걸 21459 끼 21460 ▁땅 21461 겠 21462 하던 21463 ▁언론 21464 ▁나가 21465 물을 21466 이지만 21467 ▁남자 21468 ▁제시 21469 ▁그들은 21470 ▁단계 21471 ▁아버지 21472 데요 21473 지도 21474 어야 21475 ▁국회 21476 ▁하기 21477 ▁꽃 21478 덕 21479 ▁설정 21480 ▁그리 21481 검 21482 풍 21483 센 21484 씩 21485 육 21486 함을 21487 ▁축 21488 하기도 21489 ▁하나님의 21490 ▁견 21491 ▁어디 21492 ▁전국 21493 폭 21494 ▁보통 21495 ▁보는 21496 ▁오는 21497 ▁인생 21498 골 21499 ▁어린이 21500 콘 21501 ▁여자 21502 ▁자동차 21503 럽 21504 ▁수행 21505 ▁어려운 21506 ▁마지막 21507 ▁원인 21508 ▁여전히 21509 ▁생각이 21510 ▁아침 21511 ▁섬 21512 ▁측 21513 시는 21514 ▁오후 21515 ▁녹 21516 ▁그냥 21517 ▁보여주 21518 ▁위해서는 21519 수를 21520 스크 21521 하세요 21522 곳 21523 ▁목적 21524 기로 21525 렌 21526 ▁되면 21527 ▁소비자 21528 ▁대한민국 21529 이란 21530 ▁사용할 21531 ▁경우에는 21532 ▁라는 21533 ▁동시에 21534 ▁가정 21535 ▁데이터 21536 ▁전쟁 21537 ▁못한 21538 듯 21539 ▁인사 21540 억 21541 ▁자주 21542 칭 21543 ▁중심 21544 ▁요청 21545 ▁전혀 21546 ▁회장 21547 ▁이들 21548 ▁찍 21549 ▁엄 21550 ▁있지 21551 ▁머리 21552 ▁아무 21553 상을 21554 ▁마치 21555 ▁조선 21556 ▁되었 21557 ▁규모 21558 ▁돼 21559 사는 21560 필 21561 ▁마사지 21562 ▁인정 21563 ▁영상 21564 ▁다음과 21565 ▁안정 21566 새 21567 ▁반응 21568 ▁특정 21569 ▁답 21570 탈 21571 ▁요즘 21572 ▁사례 21573 ▁핵심 21574 스터 21575 ▁한편 21576 ▁저희 21577 ▁이전 21578 ▁최고의 21579 ▁장소 21580 험 21581 ▁아마 21582 ▁빠 21583 ▁때는 21584 ▁슬 21585 ▁엄마 21586 ▁필요가 21587 ▁결혼 21588 ▁빛 21589 ▁상대 21590 ▁대화 21591 ▁주는 21592 클 21593 패 21594 ▁유럽 21595 ▁보니 21596 ▁공급 21597 슬 21598 ▁책을 21599 십시오 21600 컨 21601 ▁좌 21602 ▁원하는 21603 ▁이유는 21604 딩 21605 ▁생명 21606 왕 21607 ▁말이 21608 ▁받을 21609 ▁홍 21610 ▁사회적 21611 ▁마음을 21612 ▁빈 21613 ▁것이라고 21614 ▁부모 21615 ▁공연 21616 스를 21617 ▁울 21618 ▁그렇 21619 시키는 21620 했을 21621 ▁계약 21622 려고 21623 ▁노동 21624 ▁넓 21625 ▁걱정 21626 시켜 21627 ▁따른 21628 ▁만든 21629 ▁일상 21630 ▁요금 21631 균 21632 ▁전화 21633 ▁전통 21634 념 21635 ▁부족 21636 ▁공유 21637 찬 21638 쟁 21639 지요 21640 잡 21641 ▁제한 21642 ▁아니오 21643 ▁정상 21644 ▁욕 21645 ▁나와 21646 ▁생각하시나요 21647 손 21648 략 21649 ▁시민 21650 하신 21651 ▁특징 21652 암 21653 ▁제도 21654 ▁능력 21655 ▁시행 21656 ▁전달 21657 ▁상황이 21658 ▁식사 21659 힌 21660 사업 21661 ▁반드시 21662 ▁여러분 21663 ▁격 21664 ▁내부 21665 킹 21666 ▁되지 21667 ▁감정 21668 ▁탄 21669 ▁준 21670 ▁에너지 21671 ▁제출해주셔 21672 ▁나서 21673 접 21674 ▁플 21675 라면 21676 ▁매일 21677 ▁내용을 21678 ▁생각해 21679 밖 21680 ▁직원 21681 ▁있다면 21682 ▁수많은 21683 ▁너 21684 ▁수밖에 21685 ▁나이 21686 났다 21687 묘 21688 ▁지지 21689 ▁뭐 21690 원을 21691 ▁알아 21692 ▁느낌 21693 ▁시도 21694 주세요 21695 났 21696 ▁현지 21697 ▁본인 21698 가지 21699 인이 21700 봉 21701 ▁기사 21702 보고 21703 수록 21704 ▁넣 21705 ▁경영 21706 생활 21707 ▁죄 21708 ▁주목 21709 하자 21710 ▁중요 21711 ▁요소 21712 치를 21713 ▁병원 21714 자들이 21715 ▁조건 21716 ▁검찰 21717 제를 21718 명을 21719 ▁영어 21720 서는 21721 ▁우려 21722 ▁두고 21723 ▁접근 21724 일에 21725 식을 21726 없는 21727 ▁것처럼 21728 끄 21729 ▁받는 21730 랜드 21731 ▁많아 21732 ▁예술 21733 ▁동물 21734 하는데 21735 ▁예정 21736 기관 21737 ▁긴 21738 측 21739 ▁의료 21740 ▁가능성이 21741 춘 21742 ▁삶을 21743 ▁항공 21744 했다고 21745 벨 21746 ▁깨 21747 ▁건물 21748 ▁비판 21749 ▁지식 21750 ▁시절 21751 ▁이뤄 21752 ▁목소리 21753 ▁부산 21754 벌 21755 ▁노래 21756 ▁관심을 21757 ▁가입 21758 ▁없을 21759 ▁억 21760 얼 21761 ▁과정에서 21762 ▁실시 21763 ▁관심 21764 ▁알려 21765 ▁검사 21766 ▁제주 21767 ▁여기에 21768 ▁최소 21769 ▁느껴 21770 ▁석 21771 ▁사람의 21772 음을 21773 ▁묻 21774 수가 21775 ▁정리 21776 보다는 21777 ▁높이 21778 ▁혹은 21779 ▁연기 21780 ▁쌓 21781 ▁콘텐츠 21782 ▁망 21783 ▁희망 21784 센터 21785 스러운 21786 ▁컴퓨터 21787 년간 21788 ▁열린 21789 ▁시기 21790 갔 21791 정을 21792 ▁평화 21793 ▁곧 21794 명의 21795 ▁앞서 21796 ▁방법을 21797 ▁그것 21798 롭 21799 권을 21800 ▁쪽 21801 ▁확보 21802 ▁모바일 21803 ▁대비 21804 ▁영국 21805 ▁가능성 21806 치는 21807 ▁검 21808 ▁저렴한 21809 ▁퍼 21810 ▁밖에 21811 맹 21812 폐 21813 ▁생각을 21814 ▁받았다 21815 ▁웹 21816 ▁밝 21817 폰 21818 ▁빌 21819 ▁속에 21820 관계 21821 ▁통합 21822 ▁대중 21823 리가 21824 ▁비해 21825 텔 21826 ▁헤 21827 사의 21828 ▁여름 21829 문화 21830 ▁프로젝트 21831 ▁문제는 21832 ▁전망 21833 원이 21834 ▁색 21835 ▁보기 21836 ▁등이 21837 엘 21838 ▁있던 21839 ▁예정이다 21840 ▁나무 21841 ▁있어요 21842 한다면 21843 ▁않으면 21844 ▁훨씬 21845 ▁인물 21846 ▁절대 21847 ▁떠나 21848 핑 21849 ▁만족 21850 ▁돈을 21851 ▁매력 21852 느냐 21853 ▁시즌 21854 ▁분들 21855 ▁술 21856 되면 21857 혹 21858 ▁보이는 21859 ▁그들의 21860 ▁속도 21861 ▁루 21862 ▁듣 21863 ▁모양 21864 으나 21865 겠습니다 21866 ▁주제 21867 ▁대응 21868 ▁중앙 21869 ▁얼마 21870 녀 21871 으니 21872 ▁어렵 21873 ▁지켜 21874 ▁촬영 21875 ▁있는지 21876 트를 21877 ▁찬 21878 ▁체험 21879 ▁높아 21880 되기 21881 ▁퇴 21882 있다 21883 스는 21884 ▁사전 21885 ▁신경 21886 서를 21887 ▁못하고 21888 ▁하며 21889 ▁영어로 21890 랐 21891 ▁부정 21892 ▁전자 21893 ▁일어나 21894 ▁현상 21895 참 21896 ▁파일 21897 ▁위기 21898 ▁뇌 21899 ▁기도 21900 ▁참고 21901 ▁강조 21902 ▁칼 21903 ▁사실을 21904 ▁그동안 21905 ▁휴 21906 ▁언어 21907 ▁조치 21908 ▁신뢰 21909 ▁후에 21910 ▁형태 21911 ▁나누 21912 ▁가는 21913 ▁공식 21914 ▁그것을 21915 ▁사용하는 21916 금을 21917 ▁기관 21918 ▁궁금 21919 ▁각종 21920 ▁행정 21921 ▁특성 21922 ▁당신이 21923 ▁그가 21924 ▁꾸 21925 하시 21926 놓 21927 ▁도전 21928 ▁마을 21929 ▁문서 21930 ▁규정 21931 ▁중에 21932 혜 21933 ▁관광 21934 하였 21935 ▁한다고 21936 ▁작성 21937 ▁도입 21938 ▁맞는 21939 ▁생기 21940 ▁시험 21941 ▁차량 21942 ▁사는 21943 했지만 21944 ▁안에 21945 ▁파악 21946 ▁사람을 21947 ▁선정 21948 ▁앱 21949 잃 21950 ▁논의 21951 ▁아파트 21952 ▁그때 21953 ▁인상 21954 ▁전시 21955 ▁증상 21956 한다고 21957 ▁하나의 21958 ▁장관 21959 ▁답변 21960 드는 21961 ▁품 21962 ▁수업 21963 ▁글로벌 21964 ▁행위 21965 ▁스타일 21966 ▁잊 21967 이기도 21968 자들은 21969 ▁있어야 21970 ▁나타나 21971 ▁딸 21972 ▁캐릭터 21973 ▁탐 21974 ▁제거 21975 으로서 21976 ▁독일 21977 ▁있을까 21978 벤 21979 ▁힘을 21980 ▁언급 21981 ▁이것 21982 출장 21983 ▁참석 21984 ▁차지 21985 ▁일단 21986 적이 21987 르는 21988 되었 21989 ▁즐기 21990 ▁모르 21991 하시는 21992 ▁하늘 21993 ▁주차 21994 ▁상승 21995 ▁카드 21996 ▁싶어 21997 ▁수익 21998 ▁지금까지 21999 ▁사항 22000 되면서 22001 존 22002 성과 22003 ▁분명 22004 ▁것과 22005 ▁당신 22006 ▁완전히 22007 ▁당신의 22008 ▁예산 22009 ▁것에 22010 겠다 22011 ▁써 22012 ▁시작했다 22013 자로 22014 ▁개정 22015 슨 22016 ▁착 22017 ▁중요하다 22018 ▁혼자 22019 ▁청년 22020 ▁말한다 22021 시설 22022 ▁반영 22023 리아 22024 ▁형성 22025 ▁건설 22026 ▁소재 22027 학생 22028 ▁보장 22029 ▁삼성 22030 ▁의견 22031 감이 22032 ▁겨울 22033 ▁개념 22034 적이고 22035 ▁이루어 22036 ▁고통 22037 ▁적이 22038 ▁대부분의 22039 ▁눈에 22040 탕 22041 ▁기타 22042 ▁옷 22043 ▁만약 22044 싸 22045 들에 22046 만원 22047 ▁출시 22048 ▁하여 22049 ▁영역 22050 ▁못하는 22051 ▁자녀 22052 ▁성과 22053 ▁보험 22054 ▁남성 22055 ▁핵 22056 ▁보도 22057 ▁협력 22058 ▁정부가 22059 ▁이용할 22060 ▁편안 22061 ▁주로 22062 ▁생각한다 22063 관리 22064 ▁완성 22065 ▁방향 22066 ▁있으면 22067 ▁커피 22068 ▁열심히 22069 ▁없다는 22070 아야 22071 ▁지구 22072 ▁혼 22073 학교 22074 텐 22075 ▁하는데 22076 섭 22077 ▁특별한 22078 쁘 22079 ▁스포츠 22080 ▁작성된 22081 ▁제외 22082 ▁바다 22083 하라 22084 ▁실패 22085 ▁쓸 22086 ▁때문입니다 22087 지지 22088 ▁감소 22089 ▁글을 22090 ▁종류 22091 ▁다니 22092 ▁곳이 22093 ▁차이 22094 ▁제기 22095 ▁찾을 22096 ▁혁신 22097 털 22098 옥 22099 셨 22100 ▁충분히 22101 ▁트럼프 22102 ▁존 22103 ▁하였다 22104 ▁불안 22105 만큼 22106 보면 22107 ▁아닙니다 22108 ▁예방 22109 르고 22110 ▁상황에서 22111 ▁어머니 22112 ▁외부 22113 ▁낙 22114 ▁아름다운 22115 ▁오랜 22116 ▁그룹 22117 되며 22118 ▁회의 22119 ▁가득 22120 ▁대회 22121 ▁옆 22122 ▁아들 22123 ▁트립어드바이저 22124 ▁자신을 22125 ▁전문가 22126 욕 22127 ▁반복 22128 럼 22129 ▁위하여 22130 ▁머 22131 ▁푸 22132 ▁그렇지 22133 ▁삶의 22134 ▁당신은 22135 전을 22136 ▁틀 22137 ▁공동 22138 ▁그리스도 22139 스타 22140 ▁공공 22141 대학교 22142 ▁적극 22143 ▁불편 22144 ▁반면 22145 ▁있었던 22146 ▁했습니다 22147 ▁뉴스 22148 ▁나오는 22149 께서 22150 보험 22151 ▁드라마 22152 ▁겁니다 22153 문을 22154 활동 22155 ▁익 22156 ▁하면서 22157 ▁빠르게 22158 ▁회복 22159 ▁비즈니스 22160 ▁어린 22161 운동 22162 ▁역할 22163 닝 22164 ▁제공하는 22165 ▁구입 22166 쾌 22167 ▁길을 22168 ▁염 22169 ▁요리 22170 ▁혈 22171 ▁크기 22172 ▁있었습니다 22173 ▁문재인 22174 ▁담당 22175 ▁소식 22176 ▁뛰어 22177 ▁전환 22178 ▁구축 22179 ▁젊은 22180 ▁지정 22181 ▁기회 22182 ▁편의 22183 ▁학습 22184 비를 22185 ▁지키 22186 세를 22187 ▁등에 22188 ▁예수님 22189 ▁직장 22190 개의 22191 ▁이상의 22192 내는 22193 리지 22194 하려면 22195 정부 22196 ▁선물 22197 ▁언제 22198 ▁늦 22199 ▁동의 22200 ▁미리 22201 회의 22202 ▁단체 22203 ▁도착 22204 사이트 22205 ▁장면 22206 ▁쓴 22207 ▁정의 22208 려면 22209 ▁자세한 22210 보는 22211 ▁번역입니다 22212 ▁대체 22213 ▁장기 22214 ▁위에 22215 ▁어려움 22216 ▁배경 22217 ▁찾는 22218 년에 22219 ▁이루 22220 ▁리뷰의 22221 ▁수있는 22222 ▁같아요 22223 ▁무대 22224 보세요 22225 귀 22226 ▁스마트폰 22227 ▁벌어 22228 ▁왔다 22229 라이 22230 ▁방안 22231 준다 22232 ▁설계 22233 ▁이벤트 22234 ▁업 22235 랜 22236 오는 22237 간다 22238 ▁다양 22239 ▁중심으로 22240 ▁사람들의 22241 경제 22242 ▁가능하다 22243 ▁논란 22244 기업 22245 ▁다가 22246 리그 22247 년대 22248 ▁기분 22249 ▁효율 22250 ▁벽 22251 ▁출장 22252 았습니다 22253 세요 22254 ▁무슨 22255 ▁잘못 22256 ▁주문 22257 ▁각각 22258 산업 22259 먹 22260 ▁만에 22261 ▁남북 22262 ▁드러 22263 ▁약속 22264 ▁전기 22265 ▁독립 22266 서비스 22267 답 22268 ▁정부는 22269 ▁결과를 22270 ▁다음은 22271 ▁블 22272 ▁생각합니다 22273 ▁소통 22274 ▁끼 22275 ▁프랑스 22276 ▁모습이 22277 ▁액 22278 쿠 22279 ▁앞에 22280 ▁되기 22281 정보 22282 ▁수술 22283 ▁불구하고 22284 ▁오전 22285 ▁화면 22286 ▁곡 22287 ▁대상으로 22288 ▁출신 22289 갑 22290 ▁숙 22291 ▁러시아 22292 ▁쉬 22293 ▁프 22294 웠 22295 됐 22296 ▁마음이 22297 ▁못했다 22298 ▁관심이 22299 ▁종교 22300 퇴 22301 ▁선생님 22302 ▁도움을 22303 ▁정부의 22304 ▁주택 22305 혈 22306 ▁이와 22307 닥 22308 ▁활동을 22309 대를 22310 하려는 22311 ▁관련된 22312 ▁받 22313 ▁필수 22314 싱 22315 ▁기능을 22316 ▁끌 22317 ▁부동산 22318 ▁바뀌 22319 이라면 22320 집니다 22321 ▁대해서는 22322 ▁운전 22323 좌 22324 회를 22325 ▁시각 22326 자와 22327 ▁초기 22328 법을 22329 ▁상상 22330 임을 22331 쳤다 22332 ▁장점 22333 점이 22334 ▁개의 22335 지역 22336 ▁이들은 22337 시킬 22338 겠다는 22339 므로 22340 ▁봉 22341 ▁무엇보다 22342 ▁여부 22343 ▁규제 22344 ▁가슴 22345 ▁봄 22346 ▁비슷한 22347 ▁나의 22348 ▁쉽지 22349 ▁인천 22350 ▁건축 22351 ▁기반 22352 ▁빠른 22353 ▁통해서 22354 ▁향상 22355 으로부터 22356 농 22357 ▁예수 22358 ▁소비 22359 ▁기획 22360 ▁인터뷰 22361 억원 22362 ▁웃 22363 ▁좋습니다 22364 ▁홈페이지 22365 ▁평균 22366 ▁소설 22367 ▁죽음 22368 ▁훈련 22369 ▁성경 22370 하다는 22371 ▁사망 22372 원은 22373 함으로써 22374 ▁그래도 22375 자에게 22376 ▁과정을 22377 ▁마케팅 22378 ▁안내 22379 일부터 22380 ▁나온 22381 ▁청와대 22382 ▁대구 22383 ▁개최 22384 ▁받았 22385 ▁제품을 22386 ▁특별 22387 꺼 22388 지가 22389 ▁홈 22390 앙 22391 ▁체크 22392 장에서 22393 촌 22394 ▁유명 22395 ▁제조 22396 기간 22397 ▁응 22398 나요 22399 리스 22400 ▁딱 22401 ▁바꾸 22402 ▁빨리 22403 었고 22404 ▁없고 22405 끈 22406 ▁살펴보 22407 ▁점점 22408 심을 22409 ▁어렵다 22410 ▁이하 22411 ▁금액 22412 ▁승리 22413 ▁절차 22414 ▁남편 22415 ▁해석 22416 ▁여기서 22417 ▁클릭 22418 ▁나를 22419 ▁교통 22420 었는데 22421 ▁편집 22422 물이 22423 웃 22424 ▁사이에 22425 ▁졸업 22426 ▁그녀 22427 ▁메시지 22428 ▁단순 22429 첨 22430 폴 22431 혼 22432 ▁누구나 22433 ▁제공합니다 22434 ▁입니다 22435 ▁청소년 22436 하다고 22437 ▁올리 22438 ▁받으 22439 ▁알게 22440 하고자 22441 ▁지금은 22442 되어야 22443 ▁쿠 22444 ▁거기 22445 스가 22446 ▁됐 22447 ▁저자 22448 ▁먹는 22449 하려고 22450 자들의 22451 ▁그것이 22452 ▁디지털 22453 ▁바라보 22454 ▁즐길 22455 ▁레이 22456 ▁라이 22457 ▁미국의 22458 보니 22459 ▁확 22460 ▁구글 22461 ▁감염 22462 ▁보유 22463 ▁늘어 22464 ▁주민 22465 턴 22466 ▁참가 22467 ▁바라 22468 둥 22469 웠다 22470 ▁무료로 22471 인은 22472 쯤 22473 ▁이유로 22474 조사 22475 ▁내용은 22476 ▁질병 22477 힐 22478 정책 22479 에선 22480 ▁짓 22481 ▁대통령이 22482 ▁걷 22483 ▁타고 22484 ▁부분이 22485 완 22486 ▁지도 22487 드리 22488 ▁아내 22489 ▁뿐만 22490 기술 22491 ▁통한 22492 ▁불가능 22493 ▁보안 22494 ▁정당 22495 줍니다 22496 ▁확장 22497 ▁캐 22498 ▁합의 22499 ▁최종 22500 ▁저장 22501 ▁팬 22502 ▁주고 22503 ▁티 22504 징 22505 짐 22506 ▁기회를 22507 ▁낮은 22508 ▁고용 22509 촉 22510 킨 22511 ▁플랫폼 22512 슈 22513 ▁노출 22514 ▁실행 22515 ▁바탕으로 22516 소를 22517 ▁봐 22518 시아 22519 ▁페이지 22520 삼 22521 ▁포기 22522 ▁아시아 22523 ▁내년 22524 ▁약간 22525 ▁진짜 22526 ▁워 22527 ▁사람들에게 22528 ▁끝나 22529 ▁범 22530 ▁인도 22531 ▁일자리 22532 출장마사지 22533 휴 22534 겠지만 22535 ▁인한 22536 ▁나온다 22537 ▁본다 22538 ▁조성 22539 ▁스타 22540 ▁평소 22541 빙 22542 ▁성격 22543 ▁갈등 22544 ▁점을 22545 ▁흔 22546 ▁깊은 22547 ▁전했다 22548 ▁업계 22549 ▁방식으로 22550 ▁좋아하는 22551 ▁저녁 22552 되었습니다 22553 ▁기계 22554 ▁근거 22555 ▁달러 22556 셀 22557 짝 22558 ▁기초 22559 ▁과연 22560 롤 22561 ▁누군가 22562 ▁굳 22563 ▁의지 22564 하겠다 22565 ▁잠시 22566 ▁상담 22567 뿐만 22568 ▁얼 22569 업체 22570 ▁맥 22571 ▁믿음 22572 ▁쓰는 22573 ▁목사 22574 ▁전반 22575 ▁항공권 22576 ▁해주 22577 ▁직업 22578 ▁인간의 22579 봐야 22580 ▁타이 22581 ▁때까지 22582 치고 22583 ▁상당히 22584 렬 22585 ▁멀 22586 ▁예를 22587 시킨 22588 ▁주인공 22589 ▁기념 22590 ▁되었습니다 22591 뿐 22592 ▁소유 22593 ▁코로나 22594 ▁끊 22595 ▁은행 22596 ▁빠져 22597 했는데 22598 ▁수요 22599 ▁다운로드 22600 ▁단어 22601 ▁빼 22602 낭 22603 ▁대통령은 22604 느 22605 ▁조정 22606 ▁싸 22607 ▁있으니 22608 ▁웃음 22609 ▁출연 22610 부는 22611 ▁단지 22612 ▁그렇다면 22613 ▁중단 22614 ▁시점 22615 ▁부르 22616 ▁힘든 22617 조차 22618 ▁앞에서 22619 몬 22620 ▁냉 22621 ▁수출 22622 ▁원래 22623 ▁때마다 22624 ▁축구 22625 ▁외국인 22626 ▁흥미 22627 ▁중에서 22628 빛 22629 ▁재미 22630 ▁권리 22631 ▁자랑 22632 ▁말이다 22633 ▁그들이 22634 ▁느낄 22635 겁 22636 뜨 22637 ▁복잡 22638 ▁정권 22639 ▁활성화 22640 ▁매출 22641 ▁재미있 22642 ▁조합 22643 웨 22644 ▁괴 22645 ▁대하여 22646 ▁갖추 22647 다가 22648 ▁친구들 22649 ▁생각하는 22650 ▁일은 22651 ▁듣고 22652 ▁살고 22653 ▁연락 22654 ▁홀 22655 ▁했던 22656 ▁옵션 22657 ▁장치 22658 ▁우주 22659 ▁있겠 22660 ▁주의 22661 가요 22662 듯이 22663 ▁완 22664 하니 22665 ▁이름을 22666 ▁것이라는 22667 ▁파트너 22668 ▁상황을 22669 ▁먹고 22670 ▁관계자는 22671 ▁없다고 22672 ▁거부 22673 ▁토론 22674 ▁논 22675 ▁사태 22676 ▁진단 22677 ▁보수 22678 ▁유리 22679 ▁징 22680 이라도 22681 ▁지급 22682 ▁경험을 22683 ▁홍보 22684 ▁공정 22685 ▁마시 22686 일까지 22687 ▁꽤 22688 ▁대형 22689 ▁돌아가 22690 ▁리뷰 22691 했다는 22692 ▁포인트 22693 ▁취업 22694 ▁새로 22695 ▁빨 22696 ▁실천 22697 ▁꼽 22698 ▁진출 22699 ▁수집 22700 ▁맞춰 22701 ▁센터 22702 ▁향후 22703 사항 22704 궁 22705 ▁기다리 22706 ▁흐름 22707 톤 22708 ▁블로그 22709 콜걸 22710 ▁인구 22711 렉 22712 ▁더불어 22713 ▁효과를 22714 ▁가까운 22715 ▁곳에 22716 보기 22717 었지만 22718 ▁밥 22719 ▁창업 22720 ▁강한 22721 ▁공장 22722 ▁혜택 22723 교회 22724 ▁펼쳐 22725 ▁불러 22726 ▁도구 22727 ▁원칙 22728 죄 22729 ▁결코 22730 ▁얻을 22731 ▁여행자 22732 ▁이번에 22733 ▁카페 22734 맨 22735 ▁방법이 22736 ▁오르 22737 ▁권력 22738 ▁없었 22739 ▁값 22740 멸 22741 ▁설명했다 22742 ▁위원장 22743 ▁그녀는 22744 째 22745 룸 22746 ▁물건 22747 ▁편리 22748 ▁이것이 22749 ▁카메라 22750 풀 22751 ▁여유 22752 ▁메뉴 22753 ▁외국 22754 찌 22755 ▁민주 22756 ▁통일 22757 ▁소속 22758 쓰 22759 ▁꾸준히 22760 받는 22761 ▁품질 22762 출장안마 22763 ▁사진을 22764 ▁네트워크 22765 ▁차별 22766 ▁것인가 22767 ▁자리를 22768 ▁방법은 22769 ▁차례 22770 멘 22771 ▁않으 22772 허 22773 ▁세대 22774 룩 22775 ▁제출 22776 ▁긍정적 22777 혁 22778 화된 22779 ▁장애 22780 ▁공감 22781 ▁한국의 22782 ▁교사 22783 ▁거쳐 22784 쇄 22785 ▁완벽한 22786 ▁안에서 22787 ▁코스 22788 ▁들고 22789 ▁갖 22790 량이 22791 ▁이제는 22792 ▁확인할 22793 빈 22794 ▁자격 22795 거든요 22796 으면서 22797 씨는 22798 ▁깊 22799 틴 22800 스의 22801 ▁민족 22802 ▁누가 22803 특 22804 ▁작용 22805 ▁민주당 22806 윤 22807 칙 22808 해도 22809 개발 22810 ▁사람들을 22811 ▁떨어지 22812 응 22813 ▁이때 22814 ▁만들기 22815 ▁명의 22816 ▁수입 22817 앉 22818 ▁아무리 22819 드립니다 22820 맥 22821 ▁뉴 22822 ▁기울 22823 ▁보이지 22824 ▁실험 22825 ▁점에서 22826 냈 22827 ▁계획이다 22828 ▁자체가 22829 ▁않도록 22830 ▁입력 22831 ▁우리에게 22832 은행 22833 ▁법률 22834 년부터 22835 ▁플레이 22836 ▁세금 22837 ▁자세 22838 늘 22839 짜 22840 ▁히 22841 ▁영향 22842 ▁납 22843 ▁베이 22844 ▁만들고 22845 ▁물질 22846 단체 22847 ▁문의 22848 ▁시작한 22849 꾸 22850 ▁설립 22851 ▁불법 22852 ▁등으로 22853 ▁벗어나 22854 ▁맺 22855 ▁출발 22856 ▁영업 22857 ▁발언 22858 ▁신체 22859 ▁왔 22860 ▁심리 22861 ▁솔 22862 ▁길이 22863 ▁통과 22864 연합 22865 적이다 22866 켜 22867 듬 22868 ▁마음에 22869 ▁무엇이 22870 스럽 22871 ▁아이디어 22872 ▁놓고 22873 ▁기술을 22874 ▁자극 22875 짓 22876 혔 22877 ▁않게 22878 겼다 22879 ▁스트레스 22880 ▁업데이트 22881 ▁대책 22882 둔 22883 ▁일반적으로 22884 ▁내용이 22885 ▁사장 22886 ▁이용하실 22887 ▁곳에서 22888 ▁범위 22889 ▁준다 22890 함이 22891 ▁벗 22892 튼 22893 ▁걸어 22894 더니 22895 ▁높다 22896 ▁말하는 22897 하였습니다 22898 ▁무엇을 22899 게임 22900 ▁샤 22901 ▁마무리 22902 ▁그만큼 22903 ▁굉장히 22904 엄 22905 ▁간단 22906 별로 22907 ▁그러면 22908 김 22909 ▁확산 22910 ▁위협 22911 했어요 22912 ▁의식 22913 ▁근무 22914 하기로 22915 ▁중간 22916 ▁매장 22917 ▁효 22918 ▁일이다 22919 ▁공항 22920 ▁성적 22921 ▁말고 22922 왔 22923 ▁강의 22924 였습니다 22925 ▁변화를 22926 트리 22927 ▁적합 22928 ▁풀어 22929 ▁유형 22930 인들이 22931 ▁이처럼 22932 ▁짐 22933 ▁아는 22934 ▁앉아 22935 ▁주님 22936 였던 22937 ▁둔 22938 ▁의무 22939 앤 22940 ▁프로그램을 22941 ▁식물 22942 ▁체계 22943 ▁덜 22944 쉬 22945 ▁민간 22946 벽 22947 ▁나아가 22948 ▁가능합니다 22949 ▁덕 22950 ▁태도 22951 ▁뜨 22952 ▁알아보 22953 ▁강력한 22954 ▁재판 22955 ▁상처 22956 ▁매년 22957 ▁덕분에 22958 ▁대표는 22959 컬 22960 ▁차이가 22961 세기 22962 ▁않을까 22963 ▁배치 22964 ▁위원 22965 ▁깨끗 22966 낸다 22967 톡 22968 ▁예측 22969 ▁장비 22970 ▁카지노 22971 ▁위로 22972 ▁이유가 22973 ▁한반도 22974 ▁예전 22975 ▁끌어 22976 몰 22977 ▁들었다 22978 ▁주식 22979 ▁강조했다 22980 ▁진실 22981 ▁밑 22982 ▁선수들 22983 몽 22984 ▁대전 22985 ▁협상 22986 ▁극복 22987 았던 22988 ▁오늘날 22989 ▁불과 22990 ▁정확한 22991 ▁시선 22992 ▁정치적 22993 버린 22994 ▁세상을 22995 번째 22996 ▁남아 22997 량을 22998 ▁성능 22999 먼 23000 펜 23001 ▁모르는 23002 ▁바닥 23003 ▁밝혀 23004 ▁괜찮 23005 ▁재정 23006 ▁달려 23007 ▁보였다 23008 ▁책임을 23009 ▁사용하여 23010 ▁스마트 23011 ▁개혁 23012 킬 23013 그룹 23014 ▁모르겠 23015 ▁중이다 23016 ▁경우도 23017 ▁사업을 23018 ▁크다 23019 ▁부부 23020 ▁좋았 23021 ▁노인 23022 ▁읽어 23023 ▁의심 23024 대학 23025 ▁복지 23026 ▁가치를 23027 ▁유치 23028 픽 23029 ▁버스 23030 ▁가격이 23031 ▁회사는 23032 ▁범죄 23033 ▁내놓 23034 ▁뿌리 23035 잉 23036 ▁최저가 23037 ▁혐의 23038 ▁사람에게 23039 ▁점이 23040 릭 23041 ▁모른다 23042 꾼 23043 ▁그럴 23044 ▁상징 23045 나무 23046 ▁달성 23047 하셨 23048 ▁지배 23049 ▁작동 23050 ▁갑자기 23051 ▁어떠한 23052 ▁주민들 23053 없 23054 ▁부여 23055 ▁단순히 23056 ▁창조 23057 ▁도로 23058 ▁관점 23059 ▁느낌이 23060 ▁이용해 23061 ▁중인 23062 ▁있음을 23063 ▁종종 23064 ▁그러한 23065 ▁군사 23066 ▁광주 23067 ▁따로 23068 회사 23069 ▁나왔다 23070 ▁연습 23071 ▁씨는 23072 ▁연출 23073 ▁과제 23074 ▁충격 23075 ▁휴가 23076 맛 23077 젠 23078 ▁이론 23079 홀 23080 ▁외교 23081 컴 23082 ▁인류 23083 ▁봤 23084 ▁재료 23085 었어요 23086 값 23087 지면서 23088 ▁상황에 23089 ▁시리즈 23090 ▁날씨 23091 ▁뽑 23092 었을 23093 ▁종합 23094 ▁맨 23095 ▁제공하고 23096 ▁형식 23097 ▁신문 23098 ▁효과가 23099 ▁게다가 23100 ▁오픈 23101 ▁통하여 23102 ▁완전 23103 ▁움직이 23104 ▁철학 23105 ▁모여 23106 튀 23107 ▁의혹 23108 ▁받지 23109 냥 23110 ▁좋을 23111 ▁가서 23112 지원 23113 ▁소프트웨어 23114 ▁집단 23115 시키고 23116 ▁방법으로 23117 ▁호텔을 23118 ▁느 23119 싼 23120 ▁소득 23121 ▁미술 23122 ▁보관 23123 ▁대선 23124 ▁박근혜 23125 ▁테스트 23126 ▁무선 23127 돈 23128 ▁떨어 23129 겐 23130 ▁아니면 23131 ▁미디어 23132 ▁경우에 23133 ▁기독교 23134 ▁질환 23135 롱 23136 떨 23137 랄 23138 ▁향해 23139 ▁서울시 23140 ▁비롯한 23141 ▁않기 23142 ▁증거 23143 ▁제일 23144 ▁처음으로 23145 ▁대통령의 23146 ▁다소 23147 ▁맛있 23148 ▁기여 23149 섰 23150 쁜 23151 ▁다루 23152 ▁신앙 23153 ▁최대한 23154 ▁쏟아 23155 웨이 23156 ▁만한 23157 ▁전투 23158 ▁직원들 23159 세대 23160 겠다고 23161 ▁힘이 23162 썼 23163 ▁국정 23164 거래 23165 랍 23166 ▁우승 23167 ▁축제 23168 ▁짜 23169 ▁탓 23170 ▁발생한 23171 동안 23172 ▁시민들 23173 ▁것인지 23174 ▁작업을 23175 ▁책은 23176 ▁발달 23177 ▁계산 23178 ▁의미를 23179 ▁사랑을 23180 ▁고급 23181 ▁확실 23182 ▁긴장 23183 레스 23184 ▁구분 23185 자리 23186 덤 23187 ▁당연히 23188 ▁좋지 23189 ▁신고 23190 ▁잡아 23191 ▁드리 23192 ▁할인 23193 ▁추구 23194 ▁쉬운 23195 ▁금지 23196 ▁연속 23197 ▁하게 23198 ▁근처 23199 ▁모두가 23200 얻 23201 ▁허용 23202 대표 23203 ▁풍경 23204 ▁훌륭한 23205 ▁스토리 23206 병원 23207 ▁아닌가 23208 같은 23209 ▁기회가 23210 ▁뭔가 23211 ▁다르다 23212 ▁심지어 23213 ▁측정 23214 ▁새롭게 23215 ▁사상 23216 ▁사실상 23217 ▁아닐까 23218 해주는 23219 ▁라인 23220 시대 23221 맞 23222 ▁만난 23223 왔습니다 23224 ▁조절 23225 ▁똑같 23226 ▁지난달 23227 ▁요인 23228 ▁채용 23229 ▁생긴 23230 ▁삭제 23231 카드 23232 ▁대출 23233 학년 23234 따 23235 ▁국민의 23236 ▁라며 23237 ▁마찬가지 23238 ▁비율 23239 위원 23240 ▁겸 23241 ▁깊이 23242 ▁늘어나 23243 푸 23244 ▁옥 23245 ▁나중에 23246 춤 23247 ▁갑 23248 ▁관계를 23249 ▁식당 23250 ▁쓰고 23251 ▁었 23252 ▁실현 23253 ▁봉사 23254 으려 23255 ▁유통 23256 ▁태양 23257 ▁열정 23258 ▁실력 23259 ▁꼬 23260 ▁선언 23261 ▁관계자 23262 ▁공무원 23263 ▁독자 23264 ▁멋진 23265 써 23266 ▁말할 23267 ▁대답 23268 픈 23269 릅니다 23270 ▁약관 23271 ▁했지만 23272 ▁인권 23273 ▁분들이 23274 ▁통신 23275 ▁가까이 23276 ▁완료 23277 칸 23278 하여야 23279 ▁경쟁력 23280 ▁방지 23281 죽 23282 ▁제목 23283 했기 23284 ▁것만 23285 ▁당장 23286 봤다 23287 ▁변호사 23288 어져 23289 꿀 23290 구나 23291 ▁아동 23292 ▁성인 23293 ▁신규 23294 ▁뒷 23295 ▁별로 23296 ▁보고서 23297 둘 23298 ▁휘 23299 탑 23300 ▁먼 23301 ▁그러므로 23302 ▁지불 23303 껏 23304 ▁띄 23305 틱 23306 져야 23307 ▁영양 23308 ▁통증 23309 ▁지속적으로 23310 ▁레스토랑 23311 ▁섭취 23312 ▁점은 23313 ▁멤버 23314 ▁내리 23315 ▁코드 23316 했으며 23317 습니까 23318 ▁뒤에 23319 숨 23320 문제 23321 ▁진정한 23322 ▁롯데 23323 출장샵 23324 ▁키우 23325 룡 23326 ▁취소 23327 ▁주말 23328 셨습니다 23329 ▁심각한 23330 ▁알리 23331 ▁엄청난 23332 ▁익숙 23333 ▁자금 23334 ▁흔들 23335 ▁흐 23336 ▁버리 23337 ▁아니고 23338 ▁능력을 23339 ▁움직임 23340 ▁공기 23341 ▁잇 23342 ▁짧은 23343 ▁적절한 23344 ▁즉시 23345 ▁전부 23346 ▁콜 23347 휘 23348 받은 23349 ▁굴 23350 ▁못한다 23351 ▁올려 23352 ▁근본 23353 ▁모아 23354 하겠다는 23355 ▁맞추 23356 ▁적극적으로 23357 ▁작년 23358 ▁식품 23359 ▁결론 23360 ▁노동자 23361 ▁나올 23362 쇠 23363 ▁너무나 23364 ▁고양이 23365 ▁항목 23366 ▁무엇인가 23367 스코 23368 졌습니다 23369 ▁희 23370 알 23371 ▁뉴욕 23372 ▁그녀의 23373 ▁위치한 23374 ▁다리 23375 ▁댓글 23376 ▁마련되어 23377 ▁버전 23378 ▁앞두고 23379 ▁그럼에도 23380 놓고 23381 ▁눈물 23382 프레 23383 해야합니다 23384 즐 23385 ▁총리 23386 롭게 23387 ▁국민들 23388 ▁전문가들 23389 핀 23390 ▁아직도 23391 ▁언제나 23392 ▁못할 23393 ▁통제 23394 팩 23395 협회 23396 버리 23397 ▁같아 23398 ▁특수 23399 ▁자산 23400 릇 23401 ▁나머지 23402 든지 23403 ▁패션 23404 ▁그저 23405 ▁구원 23406 ▁데이터를 23407 ▁평생 23408 ▁여론 23409 ▁보상 23410 룰 23411 ▁팬들 23412 ▁한국인 23413 ▁유명한 23414 ▁감동 23415 ▁장애인 23416 ▁나타났다 23417 쥐 23418 ▁강남 23419 ▁아이템 23420 ▁제공됩니다 23421 ▁시청 23422 ▁상호 23423 ▁바란다 23424 ▁뿐이다 23425 ▁맞아 23426 ▁하락 23427 쌍 23428 ▁동영상 23429 ▁했는데 23430 ▁인증 23431 답니다 23432 ▁집에서 23433 ▁거예요 23434 룬 23435 닉 23436 ▁넘는 23437 ▁숫자 23438 ▁손님 23439 ▁투표 23440 ▁홍콩 23441 ▁출장안마 23442 누 23443 ▁가구 23444 ▁박사 23445 ▁따뜻한 23446 ▁생성 23447 쳤 23448 ▁그럼 23449 꽃 23450 ▁세우 23451 ▁목록 23452 ▁무시 23453 ▁낳 23454 ▁교수는 23455 ▁셈이다 23456 ▁결제 23457 ▁의원은 23458 ▁조언 23459 딜 23460 ▁이슈 23461 ▁바이러스 23462 밍 23463 ▁각자 23464 리스트 23465 욱 23466 ▁최선을 23467 ▁블랙 23468 빠 23469 홍 23470 ▁알려져 23471 닭 23472 ▁최신 23473 ▁통계 23474 ▁복음 23475 ▁선호 23476 ▁피해자 23477 ▁논리 23478 ▁애플 23479 ▁부상 23480 륙 23481 ▁비밀 23482 ▁입장에서 23483 ▁무기 23484 콤 23485 ▁개별 23486 셨다 23487 오피 23488 ▁이웃 23489 ▁숲 23490 프트 23491 ▁해보 23492 ▁신속 23493 ▁프리 23494 ▁무리 23495 뷰 23496 넷 23497 ▁경기출장 23498 졸 23499 ▁인근 23500 ▁진정 23501 ▁찾기 23502 ▁그려 23503 흘 23504 ▁실수 23505 ▁체제 23506 ▁문자 23507 ▁드립니다 23508 쌀 23509 ▁버튼 23510 ▁쇼 23511 ▁참조 23512 놀 23513 ▁알려졌다 23514 ▁공사 23515 닐 23516 ▁아빠 23517 ▁부탁 23518 ▁아기 23519 멍 23520 ▁비슷 23521 ▁다수 23522 ▁숙소 23523 럴 23524 ▁희생 23525 최 23526 ▁필요합니다 23527 ▁컬러 23528 ▁서버 23529 ▁기준으로 23530 ▁읽고 23531 ▁문학 23532 ▁경기도 23533 ▁선발 23534 ▁베트남 23535 머니 23536 ▁위반 23537 스럽게 23538 ▁성분 23539 하시면 23540 ▁거주 23541 ▁온도 23542 ▁부분은 23543 ▁만남 23544 ▁것보다 23545 같이 23546 ▁대안 23547 ▁전용 23548 ▁파괴 23549 ▁동료 23550 ▁누리 23551 하려 23552 ▁들어서 23553 하면서도 23554 ▁담아 23555 ▁채널 23556 ▁부모님 23557 ▁하겠습니다 23558 웅 23559 ▁불만 23560 ▁생존 23561 ▁좋겠다 23562 켓 23563 ▁자연스럽게 23564 ▁심사 23565 큐 23566 ▁이끌어 23567 대회 23568 ▁역량 23569 잎 23570 ▁그린 23571 해졌다 23572 ▁살펴 23573 ▁전공 23574 틈 23575 으로써 23576 ▁들어오 23577 ▁무역 23578 ▁묵 23579 ▁경계 23580 ▁궁 23581 괄 23582 한테 23583 환경 23584 ▁결합 23585 위원장 23586 ▁흑 23587 럭 23588 티브 23589 ▁잘못된 23590 ▁진보 23591 ▁균형 23592 ▁규칙 23593 통신 23594 ▁실내 23595 ▁경제적 23596 ▁없기 23597 솔 23598 ▁좁 23599 ▁임금 23600 ▁주소 23601 ▁넣어 23602 ▁탄생 23603 잔 23604 ▁덧붙였다 23605 ▁이전에 23606 ▁멀리 23607 ▁그곳 23608 소리 23609 ▁분리 23610 닿 23611 ▁손상 23612 ▁동일한 23613 ▁왼쪽 23614 ▁관광객 23615 ▁헌법 23616 ▁형태로 23617 ▁휴식 23618 ▁점이다 23619 ▁자전거 23620 캠 23621 ▁헬 23622 ▁갖는 23623 이에요 23624 ▁근육 23625 ▁거듭 23626 ▁자본 23627 ▁그러면서 23628 ▁발생하는 23629 ▁구현 23630 발전 23631 ▁하자 23632 ▁청구 23633 봤 23634 ▁공동체 23635 방법 23636 ▁비난 23637 ▁링크 23638 ▁습관 23639 ▁마찬가지로 23640 ▁걸쳐 23641 ▁싶습니다 23642 ▁혹시 23643 ▁올림픽 23644 ▁골프 23645 ▁와서 23646 ▁오랫동안 23647 ▁분명히 23648 ▁발휘 23649 ▁않아도 23650 잖아요 23651 계획 23652 납 23653 ▁재산 23654 ▁흘러 23655 젤 23656 ▁갖춘 23657 ▁머물 23658 ▁연주 23659 ▁착용 23660 ▁보이고 23661 엽 23662 ▁확정 23663 친다 23664 받고 23665 빵 23666 ▁감각 23667 ▁로봇 23668 ▁대표적인 23669 ▁완벽 23670 ▁조용 23671 ▁창출 23672 ▁뛰어난 23673 ▁해소 23674 ▁생겨 23675 ▁나에게 23676 ▁마지막으로 23677 업계 23678 ▁빚 23679 ▁호흡 23680 ▁표정 23681 ▁밝히 23682 톱 23683 ▁가끔 23684 ▁필자 23685 즘 23686 ▁통화 23687 ▁대기업 23688 문학 23689 ▁심장 23690 ▁활발 23691 ▁봅니다 23692 ▁오른쪽 23693 ▁없지만 23694 ▁사랑하는 23695 ▁나쁜 23696 켰 23697 ▁닫 23698 ▁판결 23699 ▁열어 23700 ▁부족한 23701 ▁자원 23702 섞 23703 본부 23704 ▁폭력 23705 ▁측면 23706 ▁중앙일보 23707 ▁교체 23708 님께서 23709 ▁만들었다 23710 ▁멋 23711 흡 23712 버스 23713 ▁당선 23714 ▁의문 23715 소득 23716 릿 23717 ▁검증 23718 하겠습니다 23719 쇼 23720 재단 23721 렇 23722 주택 23723 ▁발생할 23724 ▁이스라엘 23725 ▁응원 23726 ▁다녀 23727 획 23728 ▁헤어 23729 ▁표준 23730 노동 23731 ▁연장 23732 ▁것이었다 23733 월부터 23734 ▁있으 23735 ▁명령 23736 ▁선교 23737 ▁무엇인지 23738 ▁있습니까 23739 ▁부문 23740 ▁친절 23741 ▁차단 23742 ▁간단한 23743 엇 23744 봐 23745 ▁흔히 23746 ▁이라며 23747 램 23748 ▁생겼 23749 ▁추억 23750 ▁이끌 23751 ▁맞춤 23752 영화 23753 ▁아예 23754 ▁절반 23755 델 23756 ▁않지만 23757 뼈 23758 ▁않았습니다 23759 ▁농업 23760 ▁구체적인 23761 렀다 23762 ▁본질 23763 ▁일반적인 23764 ▁점차 23765 ▁조금씩 23766 ▁사유 23767 ▁이루어지 23768 ▁세워 23769 ▁건조 23770 ▁기업들 23771 텍 23772 ▁완화 23773 ▁계정 23774 ▁보존 23775 ▁재생 23776 ▁지혜 23777 ▁오른 23778 ▁포장 23779 공사 23780 ▁수수료 23781 ▁그러다 23782 ▁세력 23783 ▁지내 23784 ▁따르 23785 곱 23786 ▁자신감 23787 ▁총선 23788 ▁주위 23789 ▁있음 23790 본다 23791 계약 23792 ▁만날 23793 덩 23794 삭 23795 ▁승인 23796 ▁증명 23797 ▁스파 23798 ▁빠지 23799 ▁공통 23800 핸 23801 ▁관객 23802 ▁분류 23803 ▁색상 23804 ▁정확히 23805 ▁인재 23806 ▁덮 23807 ▁면접 23808 ▁유발 23809 ▁그렇다고 23810 ▁뛰 23811 겹 23812 ▁관람 23813 ▁악화 23814 렴 23815 ▁패턴 23816 ▁독특한 23817 ▁대규모 23818 ▁확신 23819 코리아 23820 ▁법원 23821 등록 23822 떡 23823 ▁보면서 23824 ▁분노 23825 ▁중소기업 23826 ▁후반 23827 ▁혼란 23828 더라 23829 ▁앨범 23830 ▁임대 23831 ▁임신 23832 ▁많습니다 23833 ▁점검 23834 ▁인력 23835 ▁약물 23836 제품 23837 ▁솔루션 23838 ▁많지 23839 퀴 23840 깃 23841 떼 23842 ▁관찰 23843 ▁강제 23844 ▁실적 23845 ▁전력 23846 ▁문제점 23847 ▁트레 23848 ▁다르게 23849 ▁장식 23850 ▁끊임없이 23851 ▁민주주의 23852 ▁논문 23853 콜 23854 ▁목적으로 23855 ▁뜨거운 23856 묵 23857 ▁스테 23858 ▁놀라 23859 했으나 23860 빗 23861 ▁알려진 23862 ▁들려 23863 ▁심각 23864 닌 23865 밥 23866 윈 23867 ▁대변 23868 ▁유일한 23869 ▁자세히 23870 ▁진화 23871 ▁분야에서 23872 굴 23873 ▁체결 23874 ▁세포 23875 투자 23876 ▁그랬 23877 깔 23878 하우스 23879 ▁성령 23880 ▁페이스북 23881 ▁기쁨 23882 ▁느꼈 23883 ▁대처 23884 ▁지도자 23885 ▁오류 23886 ▁초반 23887 ▁배출 23888 ▁응용 23889 하겠다고 23890 ▁조심 23891 ▁데뷔 23892 ▁할머니 23893 밭 23894 시켰다 23895 추천 23896 ▁별도의 23897 렵 23898 토리 23899 랭 23900 빅 23901 ▁상대방 23902 ▁모니터 23903 ▁사라지 23904 ▁점수 23905 ▁마스크 23906 ▁소송 23907 ▁입학 23908 됨 23909 옛 23910 ▁아무런 23911 ▁동네 23912 ▁적응 23913 ▁많았 23914 ▁출판 23915 겠죠 23916 ▁충분한 23917 ▁응답 23918 ▁구속 23919 ▁받는다 23920 ▁외에도 23921 ▁쉽고 23922 ▁하느님 23923 짧 23924 ▁받아들이 23925 ▁느낀 23926 릉 23927 ▁문장 23928 뿌 23929 ▁방향으로 23930 ▁동반 23931 ▁줄어들 23932 ▁새벽 23933 옳 23934 콩 23935 ▁모임 23936 ▁나타난 23937 ▁좋겠 23938 ▁확실히 23939 ▁받기 23940 ▁떨어진 23941 ▁깨닫 23942 ▁예배 23943 십니다 23944 ▁못했 23945 ▁야구 23946 ▁표면 23947 ▁구름 23948 줬다 23949 ▁비디오 23950 ▁쇼핑 23951 ▁우수한 23952 ▁싸움 23953 ▁용기 23954 팔 23955 읍 23956 햇 23957 ▁공포 23958 엑 23959 ▁있나요 23960 ▁추세 23961 ▁평가하기 23962 롯 23963 ▁울산 23964 ▁국회의원 23965 야말로 23966 ▁엔진 23967 ▁군대 23968 ▁날짜 23969 ▁모집 23970 ▁웹사이트 23971 ▁충전 23972 ▁바꿔 23973 ▁도움 23974 ▁살아가는 23975 ▁로마 23976 ▁지점 23977 ▁배터리 23978 멜 23979 ▁혁명 23980 ▁경력 23981 ▁걸리 23982 ▁아울러 23983 ▁가이드 23984 ▁리더 23985 ▁투쟁 23986 ▁하나님께서 23987 ▁만든다 23988 ▁전망이다 23989 랙 23990 ▁아닐 23991 ▁기반으로 23992 증권 23993 춰 23994 ▁조작 23995 ▁혈액 23996 ▁백성 23997 컵 23998 ▁놀라운 23999 ▁배송 24000 밸 24001 ▁거죠 24002 맘 24003 ▁소녀 24004 ▁많았다 24005 랩 24006 ▁그걸 24007 ▁네이버 24008 ▁미세먼지 24009 립니다 24010 ▁아니었다 24011 ▁상대적으로 24012 ▁치열 24013 ▁은혜 24014 ▁알려주 24015 ▁국립 24016 듀 24017 ▁최초로 24018 ▁폭발 24019 ▁냄새 24020 ▁든다 24021 ▁김정은 24022 ▁적어도 24023 ▁사무실 24024 마저 24025 벼 24026 ▁침대 24027 ▁아프 24028 ▁프라 24029 ▁즐겁 24030 ▁충분 24031 ▁조각 24032 ▁플레이어 24033 ▁추정 24034 ▁환영 24035 ▁실질적 24036 ▁삼성전자 24037 ▁올바른 24038 ▁화학 24039 둑 24040 ▁받게 24041 ▁드러내 24042 라이트 24043 ▁거대한 24044 ▁연합뉴스 24045 ▁부품 24046 ▁지닌 24047 ▁압박 24048 ▁커뮤니티 24049 ▁의존 24050 ▁청소 24051 ▁중요합니다 24052 ▁있으므로 24053 ▁노조 24054 ▁처벌 24055 셋 24056 ▁들여 24057 ▁아니지만 24058 땀 24059 ▁합격 24060 ▁나쁨 24061 ▁어찌 24062 돕 24063 더군요 24064 ▁어려워 24065 ▁이메일 24066 ▁테이블 24067 ▁일으키 24068 ▁계절 24069 팽 24070 ▁동작 24071 ▁바카라 24072 ▁돌려 24073 ▁음료 24074 ▁옮겨 24075 ▁집안 24076 ▁합리적 24077 깝 24078 ▁영향력 24079 ▁종료 24080 ▁왜냐하면 24081 ▁유용한 24082 믹 24083 ▁개인적으로 24084 ▁순위 24085 왔던 24086 ▁집행 24087 ▁어디서 24088 ▁좋음 24089 ▁야외 24090 ▁슈퍼 24091 ▁예비 24092 ▁블록체인 24093 ▁미치는 24094 ▁영혼 24095 ▁고등학교 24096 ▁오퍼 24097 펀 24098 ▁무조건 24099 ▁셀프 24100 뉴스 24101 ▁수영장 24102 갑니다 24103 ▁분양 24104 ▁비교적 24105 ▁떨어져 24106 ▁끝까지 24107 ▁것일까 24108 ▁비롯해 24109 ▁일찍 24110 ▁몇몇 24111 스턴 24112 ▁흐르 24113 씻 24114 ▁확률 24115 공항 24116 줘 24117 ▁다섯 24118 ▁투입 24119 더라고요 24120 ▁확인함 24121 ▁측면에서 24122 ▁너희 24123 ▁어깨 24124 팁 24125 ▁선배 24126 ▁경남 24127 ▁즐거운 24128 쿨 24129 ▁있었는데 24130 ▁참여해주셔 24131 펼 24132 ▁나왔 24133 쫓 24134 ▁소중한 24135 넘 24136 ▁매체 24137 ▁교환 24138 ▁유튜브 24139 ▁취재 24140 ▁얻는 24141 ▁있는데요 24142 빌 24143 ▁주시기 24144 ▁아름답 24145 ▁인공지능 24146 ▁나눠 24147 ▁쿠키 24148 끔 24149 ▁어쩌면 24150 밟 24151 뮤 24152 ▁변동 24153 돋 24154 ▁즐거움 24155 ▁나섰다 24156 ▁계속해서 24157 렸습니다 24158 하시기 24159 ▁중요성 24160 ▁저항 24161 ▁건너 24162 ▁진입 24163 ▁깔끔 24164 ▁투명 24165 ▁담긴 24166 시키기 24167 묶 24168 ▁교류 24169 ▁시청자 24170 ▁연령 24171 ▁부활 24172 ▁명예 24173 ▁설득 24174 ▁나타내 24175 주셔서 24176 ▁끝난 24177 렁 24178 ▁활약 24179 ▁투자자 24180 턱 24181 ▁벌써 24182 ▁운명 24183 ▁법안 24184 ▁소셜 24185 맑 24186 ▁생물 24187 ▁블루 24188 항공 24189 ▁스페셜 24190 틸 24191 드리겠습니다 24192 ▁적절 24193 캔 24194 ▁남겨 24195 옹 24196 ▁알아야 24197 튜 24198 ▁얻어 24199 ▁풍부한 24200 ▁갖게 24201 ▁열리는 24202 ▁이다 24203 ▁후보자 24204 ▁몰랐 24205 캡 24206 흉 24207 숭 24208 뇌 24209 ▁대학생 24210 포트 24211 겼 24212 ▁영광 24213 ▁직후 24214 ▁존중 24215 ▁구성원 24216 쉽 24217 ▁필요성 24218 ▁싫어 24219 으므로 24220 ▁면역 24221 ▁가르치 24222 ▁있죠 24223 ▁흡수 24224 ▁카카오 24225 ▁현금 24226 ▁정확하게 24227 ▁기본적으로 24228 ▁개입 24229 ▁인정받 24230 ▁없었던 24231 엉 24232 ▁리조트 24233 ▁담겨 24234 ▁지하철 24235 ▁일주일 24236 곁 24237 샵 24238 ▁먹어 24239 긋 24240 ▁일어난 24241 섯 24242 ▁즐기실 24243 ▁이탈리아 24244 줘야 24245 ▁충족 24246 ▁화장품 24247 ▁드러나 24248 않 24249 ▁들어간 24250 얀 24251 ▁여겨 24252 ▁파티 24253 곰 24254 ▁부작용 24255 ▁비록 24256 하므로 24257 봅 24258 ▁무언가 24259 ▁개봉 24260 ▁보여준다 24261 ▁강남안마 24262 냅 24263 ▁널리 24264 ▁영웅 24265 딘 24266 넥 24267 방송 24268 ▁무척 24269 ▁비행기 24270 ▁없애 24271 ▁트렌드 24272 땅 24273 ▁며칠 24274 ▁자유롭게 24275 ▁얻은 24276 젖 24277 ▁캐나다 24278 개혁 24279 ▁촉구 24280 ▁클라우드 24281 ▁다이어트 24282 ▁포함되어 24283 ▁취급 24284 ▁때로는 24285 ▁취약 24286 ▁끝내 24287 렀 24288 ▁직무 24289 ▁둘째 24290 캐 24291 뉴 24292 ▁얻었 24293 ▁점심 24294 뢰 24295 벅 24296 ▁노하우 24297 끓 24298 ▁이외에 24299 했는지 24300 ▁한마디 24301 ▁취임 24302 ▁아무것도 24303 ▁잃어 24304 ▁접촉 24305 셈 24306 윗 24307 ▁보낸 24308 ▁분쟁 24309 ▁있었지만 24310 ▁어울리 24311 닮 24312 쩍 24313 능력 24314 ▁보완 24315 ▁쓰레기 24316 연구소 24317 ▁멈추 24318 셉 24319 뱅 24320 ▁전세계 24321 롬 24322 ▁민감 24323 첩 24324 ▁돕는 24325 ▁라이브 24326 폼 24327 붙 24328 붕 24329 놈 24330 펴 24331 뭘 24332 탱 24333 뚫 24334 눌 24335 뚝 24336 핵 24337 닦 24338 몫 24339 싫 24340 갱 24341 뻐 24342 섹 24343 곽 24344 샌 24345 컸 24346 줬 24347 덴 24348 몸 24349 섬 24350 옮 24351 칼 24352 뻔 24353 낫 24354 댄 24355 눈 24356 렛 24357 띠 24358 땐 24359 칫 24360 칩 24361 쓸 24362 찍 24363 겉 24364 짚 24365 횡 24366 멈 24367 펙 24368 삽 24369 셰 24370 굽 24371 밤 24372 논 24373 쏘 24374 붓 24375 꼴 24376 엠 24377 흙 24378 쏠 24379 껍 24380 눔 24381 뭉 24382 컷 24383 긍 24384 닷 24385 픔 24386 녔 24387 앞 24388 뭇 24389 넣 24390 팡 24391 앗 24392 샘 24393 녕 24394 낙 24395 헤 24396 흐 24397 싹 24398 찾 24399 궤 24400 융 24401 잖 24402 팝 24403 뚱 24404 찮 24405 혐 24406 놨 24407 앓 24408 퓨 24409 얇 24410 솟 24411 핫 24412 맵 24413 딪 24414 엿 24415 줌 24416 잭 24417 썩 24418 븐 24419 핏 24420 맙 24421 췄 24422 깥 24423 둠 24424 넬 24425 닛 24426 좋 24427 뉘 24428 륨 24429 숍 24430 쩌 24431 샷 24432 넌 24433 덧 24434 툴 24435 밴 24436 뚜 24437 젊 24438 즌 24439 쭉 24440 뇨 24441 딱 24442 앵 24443 윌 24444 펌 24445 킷 24446 뒀 24447 탠 24448 흠 24449 잠 24450 깨 24451 슐 24452 낯 24453 륜 24454 잦 24455 뀐 24456 탭 24457 썰 24458 휩 24459 샤 24460 웰 24461 뜻 24462 앨 24463 뜩 24464 휠 24465 팬 24466 툰 24467 쿼 24468 펠 24469 큰 24470 흰 24471 볶 24472 떠 24473 랫 24474 갇 24475 퀘 24476 갓 24477 콕 24478 쉐 24479 얽 24480 굿 24481 괴 24482 웬 24483 횟 24484 깁 24485 텀 24486 늦 24487 못 24488 뜬 24489 뤄 24490 푼 24491 꺾 24492 봄 24493 왠 24494 힘 24495 짙 24496 빨 24497 옷 24498 늬 24499 쉴 24500 윙 24501 냄 24502 뻗 24503 쪼 24504 뜸 24505 딴 24506 핍 24507 꿈 24508 헛 24509 깎 24510 옵 24511 싶 24512 늑 24513 팟 24514 탐 24515 슴 24516 푹 24517 팎 24518 끝 24519 갚 24520 씬 24521 템 24522 꽂 24523 꼬 24524 뱀 24525 헐 24526 듈 24527 쑥 24528 셜 24529 켈 24530 솜 24531 큼 24532 넓 24533 뮬 24534 또 24535 댁 24536 낡 24537 꽉 24538 힙 24539 붐 24540 럿 24541 톨 24542 펄 24543 뤘 24544 꼽 24545 높 24546 퉁 24547 햄 24548 툼 24549 덥 24550 샀 24551 삐 24552 궐 24553 뜰 24554 잘 24555 깜 24556 둬 24557 뒤 24558 뱃 24559 훌 24560 흔 24561 콧 24562 늙 24563 젓 24564 찔 24565 얹 24566 돔 24567 홈 24568 렘 24569 쏙 24570 뜯 24571 뷔 24572 풋 24573 헨 24574 캄 24575 쏟 24576 씹 24577 둡 24578 썬 24579 엎 24580 봇 24581 꿨 24582 벳 24583 킴 24584 엣 24585 쉼 24586 잣 24587 볕 24588 앱 24589 듭 24590 훔 24591 챙 24592 뀔 24593 갯 24594 덱 24595 톰 24596 퀄 24597 엮 24598 낚 24599 볍 24600 팍 24601 뭔 24602 뽐 24603 끽 24604 짱 24605 찢 24606 껴 24607 펫 24608 랴 24609 똥 24610 쓴 24611 껑 24612 굶 24613 뿜 24614 멀 24615 벚 24616 샴 24617 괜 24618 밋 24619 젝 24620 슘 24621 꽁 24622 훼 24623 덜 24624 쑤 24625 촘 24626 똑 24627 늠 24628 왼 24629 첼 24630 놔 24631 딛 24632 홉 24633 뱉 24634 켄 24635 잇 24636 낱 24637 췌 24638 샐 24639 빡 24640 옴 24641 눅 24642 꾀 24643 펑 24644 닙 24645 씁 24646 킥 24647 싣 24648 떻 24649 짖 24650 찜 24651 낮 24652 같 24653 얘 24654 쥬 24655 곧 24656 깊 24657 훗 24658 앰 24659 몹 24660 씌 24661 퀸 24662 댐 24663 꼼 24664 탔 24665 뎌 24666 눴 24667 뿔 24668 팜 24669 깐 24670 걀 24671 즙 24672 뽀 24673 낌 24674 겟 24675 띈 24676 빔 24677 렐 24678 붉 24679 꿰 24680 맷 24681 넨 24682 겔 24683 짠 24684 벡 24685 텅 24686 늄 24687 룻 24688 얄 24689 촬 24690 춥 24691 딥 24692 멧 24693 캘 24694 딸 24695 헝 24696 탬 24697 짤 24698 툭 24699 덟 24700 딧 24701 젯 24702 엌 24703 뭄 24704 깅 24705 긁 24706 썹 24707 숲 24708 궈 24709 큽 24710 꼭 24711 뵙 24712 흑 24713 칵 24714 띤 24715 랬 24716 썸 24717 굉 24718 줍 24719 귤 24720 몄 24721 넛 24722 왜 24723 듣 24724 꿔 24725 큘 24726 쫄 24727 낀 24728 냉 24729 꿇 24730 땠 24731 똘 24732 갤 24733 딕 24734 텃 24735 컫 24736 닫 24737 벙 24738 숱 24739 겸 24740 떴 24741 돗 24742 팥 24743 팸 24744 랗 24745 팠 24746 녹 24747 웁 24748 눕 24749 쩡 24750 왈 24751 뺏 24752 덮 24753 깡 24754 삿 24755 읽 24756 낍 24757 솥 24758 츰 24759 뺀 24760 챌 24761 굼 24762 댓 24763 댈 24764 쥔 24765 헬 24766 헷 24767 뉜 24768 콥 24769 폈 24770 뽕 24771 땡 24772 뿍 24773 쭈 24774 끌 24775 떳 24776 찼 24777 씀 24778 뾰 24779 뻑 24780 슛 24781 헹 24782 늪 24783 쎄 24784 왓 24785 짬 24786 빽 24787 옙 24788 밑 24789 얕 24790 릅 24791 맴 24792 튬 24793 댔 24794 쉰 24795 챔 24796 텝 24797 묻 24798 왁 24799 꾹 24800 쿵 24801 좇 24802 킵 24803 찻 24804 됩 24805 섀 24806 윽 24807 륵 24808 귄 24809 섣 24810 맡 24811 꿋 24812 깍 24813 팰 24814 좀 24815 벗 24816 즉 24817 짊 24818 뻤 24819 켠 24820 뛰 24821 걱 24822 숫 24823 많 24824 낄 24825 므 24826 렷 24827 넉 24828 웹 24829 멤 24830 쨌 24831 룹 24832 녁 24833 빼 24834 꼈 24835 및 24836 멋 24837 슷 24838 끗 24839 좁 24840 옆 24841 멕 24842 쩔 24843 훨 24844 쿄 24845 떤 24846 촛 24847 뭐 24848 맺 24849 뀌 24850 륭 24851 믿 24852 쌓 24853 뽑 24854 갖 24855 쁨 24856 띄 24857 탓 24858 걷 24859 삶 24860 첫 24861 빚 24862 몇 24863 뒷 24864 굳 24865 밝 24866 잊 24867 끊 24868 릎 24869 낳 24870 눠 24871 겪 24872 밌 24873 굵 24874 흩 24875 꽤 24876 ( 24877 ) 24878 , 24879 - 24880 : 24881 ; 24882 ? 24883 <|zh|> 24884 <|en|> 24885 <|zh/en|> 24886 <|en/zh|> 24887 <|yue|> 24888 <|minnan|> 24889 <|wuyu|> 24890 <|dialect|> 24891 <|ja|> 24892 <|de|> 24893 <|es|> 24894 <|ru|> 24895 <|ko|> 24896 <|fr|> 24897 <|pt|> 24898 <|tr|> 24899 <|pl|> 24900 <|ca|> 24901 <|nl|> 24902 <|ar|> 24903 <|sv|> 24904 <|it|> 24905 <|id|> 24906 <|hi|> 24907 <|fi|> 24908 <|vi|> 24909 <|he|> 24910 <|uk|> 24911 <|el|> 24912 <|ms|> 24913 <|cs|> 24914 <|ro|> 24915 <|da|> 24916 <|hu|> 24917 <|ta|> 24918 <|no|> 24919 <|th|> 24920 <|ur|> 24921 <|hr|> 24922 <|bg|> 24923 <|lt|> 24924 <|la|> 24925 <|mi|> 24926 <|ml|> 24927 <|cy|> 24928 <|sk|> 24929 <|te|> 24930 <|fa|> 24931 <|lv|> 24932 <|bn|> 24933 <|sr|> 24934 <|az|> 24935 <|sl|> 24936 <|kn|> 24937 <|et|> 24938 <|mk|> 24939 <|br|> 24940 <|eu|> 24941 <|is|> 24942 <|hy|> 24943 <|ne|> 24944 <|mn|> 24945 <|bs|> 24946 <|kk|> 24947 <|sq|> 24948 <|sw|> 24949 <|gl|> 24950 <|mr|> 24951 <|pa|> 24952 <|si|> 24953 <|km|> 24954 <|sn|> 24955 <|yo|> 24956 <|so|> 24957 <|af|> 24958 <|oc|> 24959 <|ka|> 24960 <|be|> 24961 <|tg|> 24962 <|sd|> 24963 <|gu|> 24964 <|am|> 24965 <|yi|> 24966 <|lo|> 24967 <|uz|> 24968 <|fo|> 24969 <|ht|> 24970 <|ps|> 24971 <|tk|> 24972 <|nn|> 24973 <|mt|> 24974 <|sa|> 24975 <|lb|> 24976 <|my|> 24977 <|bo|> 24978 <|tl|> 24979 <|mg|> 24980 <|as|> 24981 <|tt|> 24982 <|haw|> 24983 <|ln|> 24984 <|ha|> 24985 <|ba|> 24986 <|jw|> 24987 <|su|> 24988 <|ASR|> 24989 <|AED|> 24990 <|SER|> 24991 <|nospeech|> 24992 <|Speech|> 24993 <|/Speech|> 24994 <|BGM|> 24995 <|/BGM|> 24996 <|Laughter|> 24997 <|/Laughter|> 24998 <|Applause|> 24999 <|/Applause|> 25000 <|HAPPY|> 25001 <|SAD|> 25002 <|ANGRY|> 25003 <|NEUTRAL|> 25004 <|FEARFUL|> 25005 <|DISGUSTED|> 25006 <|SURPRISED|> 25007 <|OTHER|> 25008 <|EMO_UNKNOWN|> 25009 <|Cry|> 25010 <|Sneeze|> 25011 <|Breath|> 25012 <|Cough|> 25013 <|Sing|> 25014 <|Speech_Noise|> 25015 <|withitn|> 25016 <|woitn|> 25017 <|GBG|> 25018 <|Event_UNK|> 25019 <|SPECIAL_TOKEN_1|> 25020 <|SPECIAL_TOKEN_2|> 25021 <|SPECIAL_TOKEN_3|> 25022 <|SPECIAL_TOKEN_4|> 25023 <|SPECIAL_TOKEN_5|> 25024 <|SPECIAL_TOKEN_6|> 25025 <|SPECIAL_TOKEN_7|> 25026 <|SPECIAL_TOKEN_8|> 25027 <|SPECIAL_TOKEN_9|> 25028 <|SPECIAL_TOKEN_10|> 25029 <|SPECIAL_TOKEN_11|> 25030 <|SPECIAL_TOKEN_12|> 25031 <|SPECIAL_TOKEN_13|> 25032 <|SPECIAL_TOKEN_14|> 25033 <|SPECIAL_TOKEN_15|> 25034 <|SPECIAL_TOKEN_16|> 25035 <|SPECIAL_TOKEN_17|> 25036 <|SPECIAL_TOKEN_18|> 25037 <|SPECIAL_TOKEN_19|> 25038 <|SPECIAL_TOKEN_20|> 25039 <|SPECIAL_TOKEN_21|> 25040 <|SPECIAL_TOKEN_22|> 25041 <|SPECIAL_TOKEN_23|> 25042 <|SPECIAL_TOKEN_24|> 25043 <|SPECIAL_TOKEN_25|> 25044 <|SPECIAL_TOKEN_26|> 25045 <|SPECIAL_TOKEN_27|> 25046 <|SPECIAL_TOKEN_28|> 25047 <|SPECIAL_TOKEN_29|> 25048 <|SPECIAL_TOKEN_30|> 25049 <|SPECIAL_TOKEN_31|> 25050 <|SPECIAL_TOKEN_32|> 25051 <|SPECIAL_TOKEN_33|> 25052 <|SPECIAL_TOKEN_34|> 25053 <|SPECIAL_TOKEN_35|> 25054 ================================================ FILE: backend/test_api.py ================================================ # test_api.py import requests def test_ping(): print('Testing /ping endpoint...') response = requests.get('http://localhost:58652/ping') print('Response:', response.json()) def test_list_audio_devices(): print('Testing /list_audio_devices endpoint...') response = requests.get('http://localhost:58652/list_audio_devices') devices = response.json().get('devices', []) for device in devices: print(f"Device index: {device['index']}, Name: {device['name']}, Current: {'Yes' if device['is_current'] else 'No'}") def test_set_audio_device(index): print(f'Testing /set_audio_device endpoint, setting device index to {index}...') payload = {'index': index} response = requests.post('http://localhost:58652/set_audio_device', json=payload) print('Response:', response.json()) if response.json()['status'] == 'success': print(f"Set successfully. Current device: Index {response.json()['device']['index']}, Name {response.json()['device']['name']}") else: print(f"Set failed. Error message: {response.json()['message']}") print(f"Current device: Index {response.json()['device']['index']}, Name {response.json()['device']['name']}") def test_set_hotkey(hotkey): print(f'Testing /set_hotkey endpoint, setting hotkey to "{hotkey}"...') payload = {'hotkey': hotkey} response = requests.post('http://localhost:58652/set_hotkey', json=payload) print('Response:', response.json()) if response.json()['status'] == 'success': print(f"Set successfully. Current hotkey: {response.json()['hotkey']}") else: print(f"Set failed. Error message: {response.json()['message']}") print(f"Current hotkey: {response.json()['hotkey']}") def test_get_hotkey(): print('Testing /get_hotkey endpoint...') response = requests.get('http://localhost:58652/get_hotkey') print('Response:', response.json()) def test_error_cases(): print("\nTesting error cases:") # Test setting invalid audio device index print("\nTesting setting invalid audio device index:") test_set_audio_device(-1) test_set_audio_device(9999) # Test setting invalid hotkey print("\nTesting setting invalid hotkey:") test_set_hotkey("") test_set_hotkey("invalid_hotkey") test_set_hotkey("ctrl+") # Incomplete hotkey test_set_hotkey("ctrl+invalid") # Invalid key name # Test sending invalid JSON to set_audio_device print("\nTesting sending invalid JSON to set_audio_device:") response = requests.post('http://localhost:58652/set_audio_device', json={"invalid_key": 0}) print('Response:', response.json()) # Test sending invalid JSON to set_hotkey print("\nTesting sending invalid JSON to set_hotkey:") response = requests.post('http://localhost:58652/set_hotkey', json={"invalid_key": "ctrl+q"}) print('Response:', response.json()) if __name__ == '__main__': test_ping() print() test_list_audio_devices() print() # Replace the index below with an actual existing audio device index test_set_audio_device(1) print() test_set_hotkey('ctrl+a') print() test_get_hotkey() print() test_error_cases() ================================================ FILE: frontend/.gitignore ================================================ /node_modules /dist /build .next out release .idea/ *.tmp *.temp ================================================ FILE: frontend/components.json ================================================ { "$schema": "https://ui.shadcn.com/schema.json", "style": "default", "rsc": false, "tsx": true, "tailwind": { "config": "tailwind.config.js", "css": "src/globals.css", "baseColor": "slate", "cssVariables": true }, "aliases": { "components": "@/components", "utils": "@/lib/utils" } } ================================================ FILE: frontend/index.html ================================================ SayKey
================================================ FILE: frontend/package.json ================================================ { "name": "SayKey", "productName": "SayKey", "version": "1.0.1", "description": "SayKey", "main": "dist/main.js", "icon": "src/icon-light.ico", "scripts": { "start": "electron .", "build": "tsc && webpack", "watch": "webpack --watch", "electron:build": "electron-builder", "dev": "concurrently \"npm run watch\" \"electron .\"" }, "author": "github.com/WenJing95", "license": "MIT", "devDependencies": { "@shadcn/ui": "^0.0.4", "@types/react": "^18.3.11", "@types/react-dom": "^18.3.0", "autoprefixer": "^10.4.20", "concurrently": "^9.0.1", "copy-webpack-plugin": "^12.0.2", "css-loader": "^7.1.2", "electron": "^22.0.0", "electron-builder": "^25.1.8", "postcss": "^8.4.47", "postcss-loader": "^8.1.1", "style-loader": "^4.0.0", "tailwindcss": "^3.4.13", "ts-loader": "^9.5.1", "typescript": "^4.9.5", "webpack": "^5.95.0", "webpack-cli": "^5.1.4" }, "dependencies": { "@radix-ui/react-hover-card": "^1.1.2", "@radix-ui/react-icons": "^1.3.0", "@radix-ui/react-scroll-area": "^1.2.0", "@radix-ui/react-slot": "^1.1.0", "@radix-ui/react-tabs": "^1.1.1", "@radix-ui/react-tooltip": "^1.1.3", "@types/ws": "^8.5.12", "animate.css": "^4.1.1", "axios": "^1.7.7", "class-variance-authority": "^0.7.0", "clsx": "^2.1.1", "electron-store": "^8.2.0", "framer-motion": "^10.18.0", "lucide-react": "^0.453.0", "react": "^18.2.0", "react-dom": "^18.2.0", "tailwind-merge": "^2.5.3", "tailwindcss-animate": "^1.0.7", "ws": "^8.18.0" }, "build": { "appId": "com.Saykey.Saykey", "productName": "Saykey", "icon": "src/icon-light.ico", "compression": "maximum", "files": [ "dist/**/*", "src/**/*", "package.json" ], "directories": { "output": "release" }, "win": { "target": "dir", "icon": "src/icon-light.ico" }, "asar": true } } ================================================ FILE: frontend/postcss.config.js ================================================ module.exports = { plugins: { tailwindcss: {}, autoprefixer: {}, } } ================================================ FILE: frontend/readme.md ================================================ ```bash # Install cd ./frontend npm install # Start npm run build npm start # Build exe npm run build npm run electron:build ``` ================================================ FILE: frontend/src/VoiceRecognitionIcon.tsx ================================================ import React, {useState, useEffect, useCallback, useRef} from "react"; import {motion, AnimatePresence} from "framer-motion"; import {Language, translations} from './i18n'; import 'animate.css'; interface VoiceRecognitionIconProps { isRecording: boolean; language: Language; currentShortcut: string; serverStatus: 'error' | 'starting' | 'running'; showHint: boolean; onHintHide: () => void; } const getHeightClass = (volume: number) => { const heights = ["h-[6px]", "h-[7px]", "h-[8px]", "h-[9px]", "h-[10px]", "h-[11px]"]; return heights[Math.min(Math.floor(volume * 6), 5)]; }; const getColorClass = (index: number, totalBars: number, progress: number) => { const colors = [ "bg-gray-200", "bg-gray-300", "bg-gray-400", "bg-gray-500", "bg-gray-600", "bg-gray-700", "bg-gray-800", "bg-gray-900", "bg-black", ]; const middleIndex = Math.floor(totalBars / 2); let colorIndex = index < middleIndex ? Math.min(index, colors.length - 1) : Math.min(totalBars - index - 1, colors.length - 1); colorIndex = Math.max(0, Math.floor(colorIndex * (1 - progress))); return colors[colorIndex]; }; const VoiceRecognitionIcon: React.FC = ({ isRecording, language, currentShortcut, serverStatus, showHint, onHintHide }) => { const [isAnimating, setIsAnimating] = useState(false); const [bars, setBars] = useState([]); const [animationProgress, setAnimationProgress] = useState(0); const [startingProgress, setStartingProgress] = useState(0); const totalBars = 20; const animationRef = useRef(null); const [hintText, setHintText] = useState(''); const getShortcutText = useCallback(() => { const kbdClass = "inline-flex items-center justify-center h-4 min-w-[16px] px-1 text-[9px] font-medium rounded border border-gray-200/60 bg-gray-50/90 text-gray-600 shadow-[0_1px_1px_rgba(0,0,0,0.1)] backdrop-blur-sm"; const plusClass = "mx-0.5 text-[8px] text-gray-400 font-medium"; if (currentShortcut === 'CommandOrControl+Q') { return (
Ctrl + Q
); } else if (currentShortcut === 'CommandOrControl+CapsLock') { return (
Ctrl + Caps
); } else if (currentShortcut === 'CapsLock') { return (
Caps
); } else { const keys = currentShortcut.split('+'); return (
{keys.map((key, index) => ( {key} {index < keys.length - 1 && +} ))}
); } }, [currentShortcut]); useEffect(() => { if (serverStatus === 'starting') { setStartingProgress(0); let progress = 0; const interval = setInterval(() => { progress += 0.01; setStartingProgress(Math.min(progress, 1)); if (progress >= 1) { clearInterval(interval); } }, 50); return () => clearInterval(interval); } else if (serverStatus === 'running') { setStartingProgress(1); } }, [serverStatus]); useEffect(() => { const t = translations[language]; let shortcutText = ''; if (currentShortcut === 'CommandOrControl+Q') { shortcutText = t['holdCtrlQ']; } else if (currentShortcut === 'CommandOrControl+CapsLock') { shortcutText = t['holdCtrlCapsLock']; } else if (currentShortcut === 'CapsLock') { shortcutText = t['holdCapsLock']; } else { shortcutText = `${t['hold']} ${currentShortcut}`; } setHintText(shortcutText); }, [language, currentShortcut]); useEffect(() => { if (showHint) { console.log('Hint is now visible'); } else { console.log('Hint is now hidden'); } }, [showHint]); useEffect(() => { if (showHint) { const timer = setTimeout(() => { onHintHide(); }, 7000); return () => clearTimeout(timer); } }, [showHint, onHintHide]); const addBar = useCallback((volume: number) => { setBars(prevBars => [volume, ...prevBars.slice(0, totalBars - 1)]); }, []); useEffect(() => { let interval: NodeJS.Timeout | null = null; if (isRecording) { setIsAnimating(false); interval = setInterval(() => { addBar(Math.random()); }, 100); } else if (!isAnimating && bars.length > 0) { setIsAnimating(true); requestAnimationFrame(animateBars); } return () => { if (interval) clearInterval(interval); }; }, [isRecording, addBar, isAnimating, bars.length]); const animateBars = useCallback(() => { let startTime: number | null = null; const duration = 1000; const animate = (timestamp: number) => { if (!startTime) startTime = timestamp; const elapsed = timestamp - startTime; const progress = Math.min(elapsed / duration, 1); setAnimationProgress(progress); setBars(prevBars => prevBars.map(volume => volume * (1 - progress))); if (progress < 1) { animationRef.current = requestAnimationFrame(animate); } else { setIsAnimating(false); setBars([]); setAnimationProgress(0); } }; animationRef.current = requestAnimationFrame(animate); }, []); const renderBars = () => (
{bars.map((volume, index) => (
))} {[...Array(totalBars - bars.length)].map((_, index) => (
))}
); const renderStartingBars = () => (
{[...Array(totalBars)].map((_, index) => ( ))}
); return (
{serverStatus === 'starting' ? ( {renderStartingBars()} ) : showHint ? ( {getShortcutText()} ) : ( {renderBars()} )}
); }; export default VoiceRecognitionIcon; ================================================ FILE: frontend/src/components/ui/badge.tsx ================================================ import * as React from "react" import { cva, type VariantProps } from "class-variance-authority" import { cn } from "@/lib/utils" const badgeVariants = cva( "inline-flex items-center rounded-full border px-2.5 py-0.5 text-xs font-semibold transition-colors focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2", { variants: { variant: { default: "border-transparent bg-primary text-primary-foreground hover:bg-primary/80", secondary: "border-transparent bg-secondary text-secondary-foreground hover:bg-secondary/80", destructive: "border-transparent bg-destructive text-destructive-foreground hover:bg-destructive/80", outline: "text-foreground", }, }, defaultVariants: { variant: "default", }, } ) export interface BadgeProps extends React.HTMLAttributes, VariantProps {} function Badge({ className, variant, ...props }: BadgeProps) { return (
) } export { Badge, badgeVariants } ================================================ FILE: frontend/src/components/ui/button.tsx ================================================ import * as React from "react" import { Slot } from "@radix-ui/react-slot" import { cva, type VariantProps } from "class-variance-authority" import { cn } from "../../lib/utils" const buttonVariants = cva( "inline-flex items-center justify-center rounded-md text-sm font-medium ring-offset-background transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50", { variants: { variant: { default: "bg-primary text-primary-foreground hover:bg-primary/90", destructive: "bg-destructive text-destructive-foreground hover:bg-destructive/90", outline: "border border-input bg-background hover:bg-accent hover:text-accent-foreground", secondary: "bg-secondary text-secondary-foreground hover:bg-secondary/80", ghost: "hover:bg-accent hover:text-accent-foreground", link: "text-primary underline-offset-4 hover:underline", }, size: { default: "h-10 px-4 py-2", sm: "h-9 rounded-md px-3", lg: "h-11 rounded-md px-8", icon: "h-10 w-10", }, }, defaultVariants: { variant: "default", size: "default", }, } ) export interface ButtonProps extends React.ButtonHTMLAttributes, VariantProps { asChild?: boolean } const Button = React.forwardRef( ({ className, variant, size, asChild = false, ...props }, ref) => { const Comp = asChild ? Slot : "button" return ( ) } ) Button.displayName = "Button" export { Button, buttonVariants } ================================================ FILE: frontend/src/components/ui/card.tsx ================================================ import * as React from "react" import { cn } from "@/lib/utils" const Card = React.forwardRef< HTMLDivElement, React.HTMLAttributes >(({ className, ...props }, ref) => (
)) Card.displayName = "Card" const CardHeader = React.forwardRef< HTMLDivElement, React.HTMLAttributes >(({ className, ...props }, ref) => (
)) CardHeader.displayName = "CardHeader" const CardTitle = React.forwardRef< HTMLParagraphElement, React.HTMLAttributes >(({ className, ...props }, ref) => (

)) CardTitle.displayName = "CardTitle" const CardDescription = React.forwardRef< HTMLParagraphElement, React.HTMLAttributes >(({ className, ...props }, ref) => (

)) CardDescription.displayName = "CardDescription" const CardContent = React.forwardRef< HTMLDivElement, React.HTMLAttributes >(({ className, ...props }, ref) => (

)) CardContent.displayName = "CardContent" const CardFooter = React.forwardRef< HTMLDivElement, React.HTMLAttributes >(({ className, ...props }, ref) => (
)) CardFooter.displayName = "CardFooter" export { Card, CardHeader, CardFooter, CardTitle, CardDescription, CardContent } ================================================ FILE: frontend/src/components/ui/hover-card.tsx ================================================ import * as React from "react" import * as HoverCardPrimitive from "@radix-ui/react-hover-card" import { cn } from "@/lib/utils" const HoverCard = HoverCardPrimitive.Root const HoverCardTrigger = HoverCardPrimitive.Trigger const HoverCardContent = React.forwardRef< React.ElementRef, React.ComponentPropsWithoutRef >(({ className, align = "center", sideOffset = 4, ...props }, ref) => ( )) HoverCardContent.displayName = HoverCardPrimitive.Content.displayName export { HoverCard, HoverCardTrigger, HoverCardContent } ================================================ FILE: frontend/src/components/ui/scroll-area.tsx ================================================ import * as React from "react" import * as ScrollAreaPrimitive from "@radix-ui/react-scroll-area" import { cn } from "@/lib/utils" const ScrollArea = React.forwardRef< React.ElementRef, React.ComponentPropsWithoutRef >(({ className, children, ...props }, ref) => ( {children} )) ScrollArea.displayName = ScrollAreaPrimitive.Root.displayName const ScrollBar = React.forwardRef< React.ElementRef, React.ComponentPropsWithoutRef >(({ className, orientation = "vertical", ...props }, ref) => ( )) ScrollBar.displayName = ScrollAreaPrimitive.ScrollAreaScrollbar.displayName export { ScrollArea, ScrollBar } ================================================ FILE: frontend/src/components/ui/tabs.tsx ================================================ import * as React from "react" import * as TabsPrimitive from "@radix-ui/react-tabs" import { cn } from "@/lib/utils" const Tabs = TabsPrimitive.Root const TabsList = React.forwardRef< React.ElementRef, React.ComponentPropsWithoutRef >(({ className, ...props }, ref) => ( )) TabsList.displayName = TabsPrimitive.List.displayName const TabsTrigger = React.forwardRef< React.ElementRef, React.ComponentPropsWithoutRef >(({ className, ...props }, ref) => ( )) TabsTrigger.displayName = TabsPrimitive.Trigger.displayName const TabsContent = React.forwardRef< React.ElementRef, React.ComponentPropsWithoutRef >(({ className, ...props }, ref) => ( )) TabsContent.displayName = TabsPrimitive.Content.displayName export { Tabs, TabsList, TabsTrigger, TabsContent } ================================================ FILE: frontend/src/components/ui/tooltip.tsx ================================================ import * as React from "react" import * as TooltipPrimitive from "@radix-ui/react-tooltip" import { cn } from "@/lib/utils" const TooltipProvider = TooltipPrimitive.Provider const Tooltip = TooltipPrimitive.Root const TooltipTrigger = TooltipPrimitive.Trigger const TooltipContent = React.forwardRef< React.ElementRef, React.ComponentPropsWithoutRef >(({ className, sideOffset = 4, ...props }, ref) => ( )) TooltipContent.displayName = TooltipPrimitive.Content.displayName export { Tooltip, TooltipTrigger, TooltipContent, TooltipProvider } ================================================ FILE: frontend/src/favicon/site.webmanifest ================================================ {"background_color":"#ffffff","display":"standalone","icons":[{"sizes":"192x192","src":"/android-chrome-192x192.png","type":"image/png"},{"sizes":"512x512","src":"/android-chrome-512x512.png","type":"image/png"}],"name":"SayKey","short_name":"SayKey","theme_color":"#ffffff"} ================================================ FILE: frontend/src/globals.css ================================================ @tailwind base; @tailwind components; @tailwind utilities; @layer base { :root { --background: 0 0% 100%; --foreground: 222.2 84% 4.9%; --card: 0 0% 100%; --card-foreground: 222.2 84% 4.9%; --popover: 0 0% 100%; --popover-foreground: 222.2 84% 4.9%; --primary: 222.2 47.4% 11.2%; --primary-foreground: 210 40% 98%; --secondary: 210 40% 96.1%; --secondary-foreground: 222.2 47.4% 11.2%; --muted: 210 40% 96.1%; --muted-foreground: 215.4 16.3% 46.9%; --accent: 210 40% 96.1%; --accent-foreground: 222.2 47.4% 11.2%; --destructive: 0 84.2% 60.2%; --destructive-foreground: 210 40% 98%; --border: 214.3 31.8% 91.4%; --input: 214.3 31.8% 91.4%; --ring: 222.2 84% 4.9%; --radius: 0.5rem; } .dark { --background: 222.2 84% 4.9%; --foreground: 210 40% 98%; --card: 222.2 84% 4.9%; --card-foreground: 210 40% 98%; --popover: 222.2 84% 4.9%; --popover-foreground: 210 40% 98%; --primary: 210 40% 98%; --primary-foreground: 222.2 47.4% 11.2%; --secondary: 217.2 32.6% 17.5%; --secondary-foreground: 210 40% 98%; --muted: 217.2 32.6% 17.5%; --muted-foreground: 215 20.2% 65.1%; --accent: 217.2 32.6% 17.5%; --accent-foreground: 210 40% 98%; --destructive: 0 62.8% 30.6%; --destructive-foreground: 210 40% 98%; --border: 217.2 32.6% 17.5%; --input: 217.2 32.6% 17.5%; --ring: 212.7 26.8% 83.9%; } } @layer base { * { @apply border-border; } body { @apply bg-background text-foreground; } } .drag-region { -webkit-app-region: drag; } .no-drag { -webkit-app-region: no-drag; } ================================================ FILE: frontend/src/i18n.ts ================================================ type Language = 'English' | '日本語' | '简体中文'; const translations: Record> = { 'English': { 'interfaceLanguage': 'Language', 'microphoneSelection': 'Microphone', 'noDevicesFound': 'No devices found', 'launchShortcut': 'Voice Input Shortcut', 'minimize': 'Minimize', 'exit': 'Exit', 'serverRunning': 'Server: Running', 'serverStarting': 'Server: Starting', 'serverOffline': 'Server: Offline', 'show': 'Show', 'currentShortcut': 'Current Shortcut', 'restartBackend': 'Restart', 'holdCtrlQ': 'Hold Ctrl + Q', 'holdCtrlCapsLock': 'Hold Ctrl + Caps', 'holdCapsLock': 'Hold Caps', 'viewLogs': 'View Logs', 'sayKeyLogs': 'SayKey Logs', 'download': 'Download', 'clear': 'Clear', 'searchLogs': 'Search logs...', 'hold': 'Hold', 'holdKey': 'Hold', 'holdCtrlQHint': 'Hold Ctrl+Q', 'holdCtrlCapsLockHint': 'Hold Ctrl+Caps', 'holdCapsLockHint': 'Hold Caps', }, '日本語': { 'interfaceLanguage': '言語', 'microphoneSelection': 'マイク', 'noDevicesFound': 'デバイスなし', 'launchShortcut': '音声入力ショートカット', 'minimize': '最小化', 'exit': '終了', 'serverRunning': 'サーバー:稼働中', 'serverStarting': 'サーバー:起動中', 'serverOffline': 'サーバー:オフライン', 'show': '表示', 'currentShortcut': '現在のショートカット', 'restartBackend': '再起動', 'holdCtrlQ': 'Ctrl+Q 長押し', 'holdCtrlCapsLock': 'Ctrl+Caps 長押し', 'holdCapsLock': 'Caps 長押し', 'viewLogs': 'ログを表示', 'sayKeyLogs': 'SayKeyログ', 'download': 'ダウンロード', 'clear': 'クリア', 'searchLogs': 'ログを検索...', 'hold': '長押し', 'holdKey': '押し続ける', 'holdCtrlQHint': 'Ctrl+Q 長押し', 'holdCtrlCapsLockHint': 'Ctrl+Caps 長押し', 'holdCapsLockHint': 'Caps 長押し', }, '简体中文': { 'interfaceLanguage': '界面语言', 'microphoneSelection': '麦克风', 'noDevicesFound': '未找到设备', 'launchShortcut': '语音输入快捷键', 'minimize': '最小化', 'exit': '退出', 'serverRunning': '服务正常', 'serverStarting': '正在启动服务', 'serverOffline': '服务器不在线', 'show': '显示', 'currentShortcut': '当前快捷键', 'restartBackend': '重新启动', 'holdCtrlQ': '按住 Ctrl+Q', 'holdCtrlCapsLock': '按住 Ctrl+Caps', 'holdCapsLock': '按住 Caps', 'viewLogs': '查看日志', 'sayKeyLogs': 'SayKey运行日志', 'download': '下载', 'clear': '清空', 'searchLogs': '搜索日志...', 'hold': '按住', 'holdKey': '按住', 'holdCtrlQHint': '按住 Ctrl+Q', 'holdCtrlCapsLockHint': '按住 Ctrl+Caps', 'holdCapsLockHint': '按住Caps说话', } }; export {Language, translations}; ================================================ FILE: frontend/src/index.html ================================================ SayKey
================================================ FILE: frontend/src/lib/utils.ts ================================================ import { type ClassValue, clsx } from "clsx" import { twMerge } from "tailwind-merge" export function cn(...inputs: ClassValue[]) { return twMerge(clsx(inputs)) } ================================================ FILE: frontend/src/log.html ================================================ SayKey Logs

SayKey Logs

================================================ FILE: frontend/src/main.ts ================================================ // main.ts import { app, BrowserWindow, screen, Tray, Menu, globalShortcut, ipcMain, MenuItem, nativeTheme, nativeImage, shell } from 'electron'; import * as path from 'path'; import {Language, translations} from './i18n'; import Store from 'electron-store'; import axios from 'axios'; import {spawn, ChildProcess, exec} from 'child_process'; if (process.platform === 'win32') { app.setAppUserModelId("com.SayKey.SayKey"); } const store = new Store(); console.log('Store path:', store.path); let tray: Tray | null = null; let mainWindow: BrowserWindow | null = null; let isAlwaysOnTop = true; let lastShortcutTriggerTime = 0; const DEBOUNCE_TIME = 300; let currentLanguage: Language = 'English'; let currentShortcut = 'CommandOrControl+Q'; let contextMenuHandler: ((event: Electron.IpcMainEvent) => void) | null = null; let audioDevices: { index: number; name: string; is_current: boolean }[] = []; let isServerRunning = false; let backendProcess: ChildProcess | null = null; let serverStartTime: number | null = null; let microphoneCheckInterval: NodeJS.Timeout | null = null; type ServerStatus = 'error' | 'starting' | 'running'; let serverStatus: ServerStatus = 'starting'; let isWindowMinimized = false; let isBackendRunning = false; let backendPort = 58652; async function isPortAvailable(port: number): Promise { try { await axios.get(`http://localhost:${port}/ping`, {timeout: 1000}); return false; } catch (error) { return true; } } function convertHotkeyForServer(hotkey: string): string { if (hotkey === 'CapsLock') { return 'capslock'; } else { return hotkey.replace('CommandOrControl', 'ctrl'); } } function killAllSayKeyProcesses(): Promise { return new Promise((resolve, reject) => { if (isDevelopment()) { console.log('Development environment: Skip terminating backend process'); resolve(); return; } exec('taskkill /F /IM SayKey-server.exe', (error, stdout, stderr) => { if (error) { console.log(`No running SayKey-server.exe process was found or the process could not be terminated: ${error.message}`); resolve(); } else { console.log(`Successfully killed all SayKey-server.exe processes: ${stdout}`); resolve(); } }); }); } function isDevelopment() { return !app.isPackaged; } async function startBackendService() { if (isDevelopment()) { console.log('Development environment: Skip starting backend services'); serverStatus = 'starting'; updateTrayMenu(); updateContextMenu(); serverStartTime = Date.now(); return; } await killAllSayKeyProcesses(); let backendPath: string; let sherpaOnnxPath: string; let tokensPath: string; if (isDevelopment()) { backendPath = path.join(__dirname, '..', '..', 'backend', 'dist', 'SayKey-server.exe'); sherpaOnnxPath = path.join(__dirname, '..', '..', 'backend', 'dist', 'sherpa-onnx', 'model.int8.onnx'); tokensPath = path.join(__dirname, '..', '..', 'backend', 'dist', 'sherpa-onnx', 'tokens.txt'); } else { // exe const exeDir = path.dirname(process.execPath); backendPath = path.join(exeDir, 'SayKey-server.exe'); sherpaOnnxPath = path.join(exeDir, 'sherpa-onnx', 'model.int8.onnx'); tokensPath = path.join(exeDir, 'sherpa-onnx', 'tokens.txt'); } console.log('App path:', app.getAppPath()); console.log('Backend path:', backendPath); console.log('Sherpa ONNX path:', sherpaOnnxPath); console.log('Tokens path:', tokensPath); const serverHotkey = convertHotkeyForServer(currentShortcut); let port = 58652; const maxPort = 58662; while (port <= maxPort) { if (await isPortAvailable(port)) { break; } port++; } if (port > maxPort) { console.error('Unable to find available port'); serverStatus = 'error'; updateTrayMenu(); updateContextMenu(); return; } const args = [ `--sense-voice=${sherpaOnnxPath}`, `--tokens=${tokensPath}`, `--hotkey=${serverHotkey}`, `--api-port=${port}` ]; backendProcess = spawn(backendPath, args, { cwd: path.dirname(backendPath), stdio: 'pipe' }); if (backendProcess.stdout) { backendProcess.stdout.setEncoding('utf8'); } if (backendProcess.stderr) { backendProcess.stderr.setEncoding('utf8'); } backendProcess.stdout?.on('data', (data) => { console.log(`Backend stdout: ${data}`); }); backendProcess.stderr?.on('data', (data) => { console.error(`Backend stderr: ${data}`); }); backendProcess.on('close', (code) => { console.log(`Backend process exited with code ${code}`); isBackendRunning = false; serverStatus = 'error'; updateTrayMenu(); updateContextMenu(); }); isBackendRunning = true; serverStatus = 'starting'; serverStartTime = Date.now(); updateTrayMenu(); updateContextMenu(); backendPort = port; } function loadSettings() { const systemLanguage = app.getLocale(); let defaultLanguage: Language = 'English'; if (systemLanguage.startsWith('ja')) { defaultLanguage = '日本語'; } else if (systemLanguage.startsWith('zh')) { defaultLanguage = '简体中文'; } currentLanguage = store.get('language', defaultLanguage) as Language; currentShortcut = store.get('shortcut', 'CommandOrControl+Q') as string; console.log('Settings loaded:', {currentLanguage, currentShortcut}); } function saveSettings() { store.set('language', currentLanguage); store.set('shortcut', currentShortcut); console.log('Settings saved:', {currentLanguage, currentShortcut}); } async function fetchAudioDevices() { try { const response = await axios.get(`http://localhost:${backendPort}/list_audio_devices`); const newAudioDevices = response.data.devices; if (JSON.stringify(newAudioDevices) !== JSON.stringify(audioDevices)) { audioDevices = newAudioDevices; console.log('Audio devices updated:', audioDevices); if (mainWindow) { mainWindow.webContents.send('audio-devices-updated', audioDevices); } } } catch (error) { console.error('Failed to fetch audio devices:', error); } } function changeLanguage(lang: Language) { currentLanguage = lang; saveSettings(); if (mainWindow) { mainWindow.webContents.send('language-changed', lang); } setupContextMenu(); console.log('Language changed:', lang); } type HotkeyResponse = { status: 'success' | 'error'; message: string; hotkey: string; }; async function changeShortcut(newShortcut: string) { const serverHotkey = convertHotkeyForServer(newShortcut); try { const response = await axios.post(`http://localhost:${backendPort}/set_hotkey`, {hotkey: serverHotkey}); const data = response.data; if (data.status === 'success') { globalShortcut.unregisterAll(); currentShortcut = newShortcut; saveSettings(); registerGlobalShortcut(); if (mainWindow) { mainWindow.webContents.send('settings-updated', {currentShortcut: newShortcut}); } console.log('Shortcut changed:', newShortcut); } else { console.log('Failed to change shortcut:', data.message); currentShortcut = convertServerHotkeyToElectron(data.hotkey); } } catch (error) { console.error('Failed to change shortcut:', error); } setupContextMenu(); updateTrayMenu(); } function convertServerHotkeyToElectron(serverHotkey: string): string { if (serverHotkey === 'capslock') { return 'CapsLock'; } else if (serverHotkey.includes('ctrl')) { return serverHotkey.replace('ctrl', 'CommandOrControl'); } return serverHotkey; } function getMenuTemplate(): Electron.MenuItemConstructorOptions[] { const t = translations[currentLanguage]; let statusIcon: string; let statusText: string; switch (serverStatus) { case 'running': statusIcon = '🟢'; statusText = t['serverRunning'] || 'Server Running'; break; case 'starting': statusIcon = '🟡'; statusText = t['serverStarting'] || 'Server Starting'; break; case 'error': default: statusIcon = '⚪'; statusText = t['serverOffline'] || 'Server Offline'; } const currentMicrophone = audioDevices.find(device => device.is_current); const currentMicrophoneName = currentMicrophone ? currentMicrophone.name : t['noDevicesFound']; const currentShortcutDisplay = (() => { switch (currentShortcut) { case 'CommandOrControl+Q': return t['holdCtrlQ']; case 'CommandOrControl+CapsLock': return t['holdCtrlCapsLock']; case 'CapsLock': return t['holdCapsLock']; default: return `${t['hold']} ${convertHotkeyForServer(currentShortcut)}`; } })(); return [ // Application Header {label: `SayKey v1.0.1`, enabled: false}, {type: 'separator'}, // Server Status {label: `${statusIcon} ${statusText}`, enabled: false}, {type: 'separator'}, // Settings { label: `${t['microphoneSelection']}: ${currentMicrophoneName}`, submenu: audioDevices.map(device => ({ label: device.name, type: 'radio', checked: device.is_current, click: () => changeMicrophone(device.index), })), }, { label: `${t['launchShortcut']}: ${currentShortcutDisplay}`, submenu: [ { label: t['holdCtrlQ'], type: 'radio', checked: currentShortcut === 'CommandOrControl+Q', click: () => changeShortcut('CommandOrControl+Q'), }, { label: t['holdCtrlCapsLock'], type: 'radio', checked: currentShortcut === 'CommandOrControl+CapsLock', click: () => changeShortcut('CommandOrControl+CapsLock'), }, { label: t['holdCapsLock'], type: 'radio', checked: currentShortcut === 'CapsLock', click: () => changeShortcut('CapsLock'), }, ], }, { label: t['interfaceLanguage'], submenu: [ { label: 'English', type: 'radio', checked: currentLanguage === 'English', click: () => changeLanguage('English'), }, { label: '日本語', type: 'radio', checked: currentLanguage === '日本語', click: () => changeLanguage('日本語'), }, { label: '简体中文', type: 'radio', checked: currentLanguage === '简体中文', click: () => changeLanguage('简体中文'), }, ], }, {type: 'separator'}, // Tools / Support { label: t['viewLogs'], click: () => { if (logWindow) { logWindow.focus(); } else { createLogWindow(); } }, }, { label: t['restartBackend'], click: () => { restartBackendService(); }, }, { label: 'Github ⭐', click: () => { shell.openExternal('https://github.com/WenJing95/SayKey'); }, }, {type: 'separator'}, // Window Management { label: isWindowMinimized ? t['show'] : t['minimize'], click: () => { if (isWindowMinimized) { mainWindow?.restore(); isWindowMinimized = false; } else { mainWindow?.minimize(); isWindowMinimized = true; } updateTrayMenu(); updateContextMenu(); }, }, { label: t['exit'], click: () => app.quit(), }, ]; } async function changeMicrophone(index: number) { try { await axios.post(`http://localhost:${backendPort}/set_audio_device`, {index}); store.set('currentMicrophoneIndex', index); await fetchAudioDevices(); updateTrayMenu(); setupContextMenu(); if (mainWindow) { mainWindow.webContents.send('settings-updated', {currentMicrophoneIndex: index}); } console.log('Microphone changed:', index); } catch (error) { console.error('Failed to change microphone:', error); } } function setupContextMenu() { if (contextMenuHandler) { ipcMain.removeListener('show-context-menu', contextMenuHandler); } contextMenuHandler = (event) => { const menu = Menu.buildFromTemplate(getMenuTemplate()); const win = BrowserWindow.fromWebContents(event.sender); if (win) { menu.popup({window: win}); } event.sender.send('current-shortcut', currentShortcut); }; ipcMain.on('show-context-menu', contextMenuHandler); } async function createWindow() { const primaryDisplay = screen.getPrimaryDisplay(); const {width, height} = primaryDisplay.workAreaSize; mainWindow = new BrowserWindow({ width: 90, height: 40, x: Math.round((width - 90) / 2), // Center horizontally y: Math.round(height - 60), // 20 pixels from the bottom frame: false, transparent: true, resizable: false, skipTaskbar: true, // icon: path.join(__dirname, './icon-light.ico'), icon: __dirname + '/icon-light.ico', webPreferences: { contextIsolation: true, preload: path.join(__dirname, 'preload.js'), nodeIntegration: false, }, }); try { await mainWindow.loadFile(path.join(__dirname, '..', 'src', 'index.html')); mainWindow.setMovable(true); updateAlwaysOnTop(); // Make the window draggable mainWindow.setIgnoreMouseEvents(false); // Handle context menu setupContextMenu(); mainWindow.on('minimize', () => { isWindowMinimized = true; updateTrayMenu(); updateContextMenu(); }); mainWindow.on('restore', () => { isWindowMinimized = false; updateTrayMenu(); updateContextMenu(); }); mainWindow.webContents.on('did-finish-load', () => { mainWindow?.webContents.send('init-animation', { language: currentLanguage, currentShortcut: currentShortcut }); }); } catch (error) { console.error('Failed to load the HTML file:', error); } } function updateAlwaysOnTop() { if (mainWindow) { mainWindow.setAlwaysOnTop(isAlwaysOnTop, 'floating'); } } function createTray() { try { const isDarkMode = nativeTheme.shouldUseDarkColors; const iconPath = isDarkMode ? 'icon-light.png' : 'icon-dark.png'; const trayIcon = nativeImage.createFromPath(path.join(__dirname, iconPath)); tray = new Tray(trayIcon); // tray = new Tray(nativeImage.createFromPath(iconPath)); updateTrayMenu(); nativeTheme.on('updated', () => { const newIconPath = nativeTheme.shouldUseDarkColors ? 'icon-light.png' : 'icon-dark.png'; const newTrayIcon = nativeImage.createFromPath(path.join(__dirname, newIconPath)); tray?.setImage(newTrayIcon); }); setInterval(checkServerStatus, 6000); } catch (error) { console.error('Failed to create tray:', error); } } function updateTrayMenu() { if (!tray) return; const contextMenu = Menu.buildFromTemplate(getMenuTemplate()); tray.setToolTip(`SayKey`); tray.setContextMenu(contextMenu); } function registerGlobalShortcut() { try { globalShortcut.unregisterAll(); if (currentShortcut === 'CapsLock') { let isCapsLockPressed = false; globalShortcut.register('CapsLock', () => { isCapsLockPressed = true; // console.log('CapsLock pressed'); if (mainWindow) { mainWindow.webContents.send('trigger-voice-recognition'); } }); globalShortcut.register('CapsLock', () => { if (isCapsLockPressed) { isCapsLockPressed = false; // console.log('CapsLock released'); if (mainWindow) { mainWindow.webContents.send('stop-voice-recognition'); } } }); } else { const ret = globalShortcut.register(currentShortcut, () => { const now = Date.now(); if (now - lastShortcutTriggerTime > DEBOUNCE_TIME) { // console.log(`${currentShortcut} is pressed`); if (mainWindow) { mainWindow.webContents.send('trigger-voice-recognition'); } lastShortcutTriggerTime = now; } }); if (!ret) { console.log('Shortcut registration failed'); } } console.log(`${currentShortcut} registration:`, globalShortcut.isRegistered(currentShortcut)); } catch (error) { console.error('Failed to register global shortcut:', error); } } async function checkServerStatus() { if (serverStatus === 'starting' && serverStartTime && Date.now() - serverStartTime < 5000) { return; // If the server has just started, do not check and give the backend server some time to start } // if (!isBackendRunning) { // serverStatus = 'error'; // updateTrayMenu(); // updateContextMenu(); // return; // } try { const response = await axios.get(`http://localhost:${backendPort}/ping`, {timeout: 2000}); const status = response.data.status === 'alive' ? 'running' : 'error'; if (serverStatus !== status) { serverStatus = status; if (serverStatus === 'running') { await fetchAudioDevices(); startMicrophoneCheck(); } else { stopMicrophoneCheck(); } if (mainWindow) { mainWindow.webContents.send('server-status-changed', serverStatus); } } } catch (error) { serverStatus = 'error'; stopMicrophoneCheck(); } updateTrayMenu(); updateContextMenu(); } function updateContextMenu() { if (mainWindow) { const menu = Menu.buildFromTemplate(getMenuTemplate()); mainWindow.setMenu(menu); } } function startMicrophoneCheck() { if (!microphoneCheckInterval) { microphoneCheckInterval = setInterval(async () => { await fetchAudioDevices(); updateTrayMenu(); updateContextMenu(); }, 5000); } } function stopMicrophoneCheck() { if (microphoneCheckInterval) { clearInterval(microphoneCheckInterval); microphoneCheckInterval = null; } } let logWindow: BrowserWindow | null = null; const logMessages: string[] = []; function createLogWindow() { logWindow = new BrowserWindow({ width: 800, height: 600, frame: false, icon: __dirname + '/icon-light.ico', // icon: path.join(__dirname, '/icon-light.ico'), webPreferences: { contextIsolation: true, preload: path.join(__dirname, 'preload.js'), }, }); logWindow.loadFile(path.join(__dirname, '..', 'src', 'log.html')); logWindow.webContents.on('did-finish-load', () => { logWindow?.webContents.send('logs', logMessages); }); logWindow.on('closed', () => { logWindow = null; }); } const originalLog = console.log; const originalError = console.error; console.log = (...args) => { const message = args.join(' '); logMessages.push(message); if (logWindow) { logWindow.webContents.send('log', message); } originalLog.apply(console, args); }; console.error = (...args) => { const message = args.join(' '); logMessages.push(`ERROR: ${message}`); if (logWindow) { logWindow.webContents.send('log', `ERROR: ${message}`); } originalError.apply(console, args); }; app.whenReady().then(async () => { loadSettings(); await startBackendService(); // Make sure the backend service is started await fetchAudioDevices(); await createWindow(); createTray(); registerGlobalShortcut(); setupContextMenu(); startMicrophoneCheck(); if (mainWindow) { mainWindow.webContents.send('init-settings', {language: currentLanguage, currentShortcut: currentShortcut}); } app.on('activate', async () => { if (BrowserWindow.getAllWindows().length === 0) { await createWindow(); } }); ipcMain.on('get-initial-language', (event) => { event.reply('initial-language', currentLanguage); }); ipcMain.on('get-initial-settings', (event) => { const settings = { language: currentLanguage, currentShortcut: currentShortcut }; console.log('Sending initial settings to renderer:', settings); event.reply('initial-settings', settings); }); ipcMain.on('request-logs', (event) => { event.reply('logs', logMessages); }); setInterval(checkServerStatus, 5000); ipcMain.handle('get-current-language', () => { return currentLanguage; }); }); app.on('window-all-closed', () => { if (process.platform !== 'darwin') { app.quit(); } }); app.on('will-quit', async () => { if (backendProcess) { backendProcess.kill(); isBackendRunning = false; } // Make sure all SayKey-server.exe processes are killed await killAllSayKeyProcesses(); globalShortcut.unregisterAll(); saveSettings(); stopMicrophoneCheck(); }); ipcMain.on('toggle-always-on-top', () => { isAlwaysOnTop = !isAlwaysOnTop; updateAlwaysOnTop(); updateTrayMenu(); }); process.on('uncaughtException', (error) => { console.error('Uncaught exception:', error); }); process.on('unhandledRejection', (reason, promise) => { console.error('Unhandled Rejection at:', promise, 'reason:', reason); }); async function getCurrentHotkey() { try { const response = await axios.get<{ hotkey: string }>(`http://localhost:${backendPort}/get_hotkey`); const serverHotkey = response.data.hotkey; currentShortcut = serverHotkey.includes('ctrl') ? serverHotkey.replace('ctrl', 'CommandOrControl') : serverHotkey.includes('command') ? serverHotkey.replace('command', 'CommandOrControl') : serverHotkey; console.log('Current hotkey:', currentShortcut); } catch (error) { console.error('Failed to get current hotkey:', error); } setupContextMenu(); updateTrayMenu(); } function restartBackendService() { if (backendProcess) { backendProcess.kill(); } serverStatus = 'starting'; if (mainWindow) { mainWindow.webContents.send('server-status-changed', serverStatus); } startBackendService(); } ================================================ FILE: frontend/src/preload.ts ================================================ // preload.ts import {contextBridge, ipcRenderer} from 'electron'; import {Language} from './i18n'; interface MediaDeviceInfo { deviceId: string; kind: string; label: string; groupId: string; } contextBridge.exposeInMainWorld('electron', { onTriggerVoiceRecognition: (callback: () => void) => { ipcRenderer.on('trigger-voice-recognition', () => callback()); }, toggleAlwaysOnTop: () => { ipcRenderer.send('toggle-always-on-top'); }, showContextMenu: () => { ipcRenderer.send('show-context-menu'); }, onLanguageChanged: (callback: (lang: Language) => void) => { ipcRenderer.on('language-changed', (_, lang) => callback(lang)); }, getInitialSettings: () => { return new Promise((resolve) => { ipcRenderer.send('get-initial-settings'); ipcRenderer.once('initial-settings', (_, settings) => { resolve(settings); }); }); }, onSettingsUpdated: (callback: (settings: Partial<{ language: Language; currentShortcut: string; selectedMicrophoneId: string; }>) => void) => { ipcRenderer.on('settings-updated', (_, settings) => callback(settings)); }, sendMicrophoneList: (devices: MediaDeviceInfo[]) => { ipcRenderer.send('microphone-list', devices); }, getCurrentMicrophone: () => { return new Promise((resolve) => { ipcRenderer.send('get-current-microphone'); ipcRenderer.once('current-microphone', (_, index) => { resolve(index); }); }); }, onAudioDevicesUpdated: (callback: (devices: MediaDeviceInfo[]) => void) => { ipcRenderer.on('audio-devices-updated', (_, devices) => callback(devices)); }, onStopVoiceRecognition: (callback: () => void) => { ipcRenderer.on('stop-voice-recognition', () => callback()); }, checkBackendStatus: () => { return new Promise((resolve) => { ipcRenderer.send('check-backend-status'); ipcRenderer.once('backend-status', (_, status) => { resolve(status); }); }); }, getCurrentLanguage: () => ipcRenderer.invoke('get-current-language'), onServerStatusChanged: (callback: (status: 'error' | 'starting' | 'running') => void) => { ipcRenderer.on('server-status-changed', (_, status) => callback(status)); }, onCurrentShortcutChanged: (callback: (shortcut: string) => void) => { ipcRenderer.on('current-shortcut', (_, shortcut) => callback(shortcut)); }, onInitSettings: (callback: (settings: { language: Language; currentShortcut: string }) => void) => { ipcRenderer.on('init-settings', (_, settings) => callback(settings)); }, onShowShortcutHint: (callback: () => void) => { ipcRenderer.on('show-shortcut-hint', () => callback()); }, }); contextBridge.exposeInMainWorld('logger', { requestLogs: () => ipcRenderer.send('request-logs'), onLog: (callback: (message: string) => void) => { ipcRenderer.on('log', (_, message) => callback(message)); }, onLogsReceived: (callback: (logs: string[]) => void) => { ipcRenderer.on('logs', (_, logs) => callback(logs)); }, }); ================================================ FILE: frontend/src/renderer.tsx ================================================ // renderer.tsx import React, {useEffect, useState, useRef, useCallback} from 'react'; import ReactDOM from 'react-dom'; import VoiceRecognitionIcon from './VoiceRecognitionIcon'; import './globals.css'; import 'animate.css'; import {Language, translations} from './i18n'; declare global { interface Window { electron: { onTriggerVoiceRecognition: (callback: () => void) => void; toggleAlwaysOnTop: () => void; showContextMenu: () => void; onLanguageChanged: (callback: (lang: Language) => void) => void; getInitialSettings: () => Promise<{ language: Language; currentShortcut: string; }>; onSettingsUpdated: (callback: (settings: Partial<{ language: Language; currentShortcut: string; }>) => void) => void; getCurrentMicrophone: () => Promise; onAudioDevicesUpdated: (callback: (devices: MediaDeviceInfo[]) => void) => void; onStopVoiceRecognition: (callback: () => void) => void; checkBackendStatus: () => Promise<'starting' | 'running' | 'error'>; onServerStatusChanged: (callback: (status: 'error' | 'starting' | 'running') => void) => void; onCurrentShortcutChanged: (callback: (shortcut: string) => void) => void; onInitSettings: (callback: (settings: { language: Language; currentShortcut: string }) => void) => void; onShowShortcutHint: (callback: () => void) => void; }; } } function App() { const [isRecording, setIsRecording] = useState(false); const [language, setLanguage] = useState('English'); const [currentShortcut, setCurrentShortcut] = useState('CommandOrControl+Q'); const [currentMicrophoneIndex, setCurrentMicrophoneIndex] = useState(0); const recordingTimeoutRef = useRef(null); const [backendStatus, setBackendStatus] = useState<'starting' | 'running' | 'error'>('starting'); const [serverStatus, setServerStatus] = useState<'error' | 'starting' | 'running'>('starting'); const [showHint, setShowHint] = useState(false); useEffect(() => { const handleTriggerVoiceRecognition = () => { console.log('Voice recognition triggered'); setIsRecording(true); if (recordingTimeoutRef.current) { clearTimeout(recordingTimeoutRef.current); } recordingTimeoutRef.current = setTimeout(() => { setIsRecording(false); }, 1000); }; const handleLanguageChange = (newLang: Language) => { setLanguage(newLang); }; window.electron.onTriggerVoiceRecognition(handleTriggerVoiceRecognition); window.electron.onLanguageChanged(handleLanguageChange); window.electron.getInitialSettings().then((settings) => { setLanguage(settings.language); setCurrentShortcut(settings.currentShortcut); }); window.electron.getCurrentMicrophone().then((index: number) => { setCurrentMicrophoneIndex(index); }); const handleAudioDevicesUpdate = (devices: MediaDeviceInfo[]) => { console.log('Audio devices updated:', devices); }; window.electron.onAudioDevicesUpdated(handleAudioDevicesUpdate); const handleStopVoiceRecognition = () => { console.log('Voice recognition stopped'); setIsRecording(false); }; window.electron.onStopVoiceRecognition(handleStopVoiceRecognition); window.electron.onServerStatusChanged((status) => { setServerStatus(status); if (status === 'starting') { setShowHint(false); } else if (status === 'running') { setTimeout(() => setShowHint(true), 500); } }); window.electron.onCurrentShortcutChanged((shortcut) => { setCurrentShortcut(shortcut); }); window.electron.onInitSettings((settings) => { setLanguage(settings.language); setCurrentShortcut(settings.currentShortcut); }); const handleShowShortcutHint = () => { setShowHint(true); console.log('Showing shortcut hint'); setTimeout(() => { setShowHint(false); console.log('Hiding shortcut hint'); }, 7000); }; window.electron.onShowShortcutHint(handleShowShortcutHint); window.electron.onLanguageChanged((newLang) => { setLanguage(newLang); handleShowShortcutHint(); }); window.electron.onSettingsUpdated((settings) => { if (settings.currentShortcut) { setCurrentShortcut(settings.currentShortcut); handleShowShortcutHint(); } }); return () => { if (recordingTimeoutRef.current) { clearTimeout(recordingTimeoutRef.current); } window.electron.onAudioDevicesUpdated(() => { }); window.electron.onStopVoiceRecognition(() => { }); window.electron.onShowShortcutHint(() => { }); window.electron.onLanguageChanged(() => { }); window.electron.onSettingsUpdated(() => { }); }; }, []); useEffect(() => { const handleContextMenu = (event: MouseEvent) => { event.preventDefault(); window.electron.showContextMenu(); }; window.addEventListener('contextmenu', handleContextMenu); return () => { window.removeEventListener('contextmenu', handleContextMenu); }; }, []); const t = translations[language]; useEffect(() => { const handleSettingsUpdate = (updatedSettings: Partial<{ language: Language; currentShortcut: string; currentMicrophoneIndex: number; }>) => { if (updatedSettings.language) setLanguage(updatedSettings.language); if (updatedSettings.currentShortcut) setCurrentShortcut(updatedSettings.currentShortcut); if (updatedSettings.currentMicrophoneIndex !== undefined) setCurrentMicrophoneIndex(updatedSettings.currentMicrophoneIndex); }; window.electron.onSettingsUpdated(handleSettingsUpdate); return () => { window.electron.onSettingsUpdated(() => { }); }; }, []); useEffect(() => { const checkBackendStatus = async () => { try { const status = await window.electron.checkBackendStatus(); setBackendStatus(status); } catch (error) { console.error('Failed to check backend status:', error); setBackendStatus('error'); } }; checkBackendStatus(); const intervalId = setInterval(checkBackendStatus, 6000); return () => clearInterval(intervalId); }, []); const handleHintHide = useCallback(() => { setShowHint(false); }, []); return (
); } ReactDOM.render(, document.getElementById('root')); ================================================ FILE: frontend/src/styles.css ================================================ @tailwind base; @tailwind components; @tailwind utilities; ================================================ FILE: frontend/tailwind.config.js ================================================ /** @type {import('tailwindcss').Config} */ module.exports = { darkMode: ["class"], content: [ './src/**/*.{ts,tsx}', './index.html', ], theme: { container: { center: true, padding: "2rem", screens: { "2xl": "1400px", }, }, extend: { colors: { border: "hsl(var(--border))", input: "hsl(var(--input))", ring: "hsl(var(--ring))", background: 'transparent', foreground: "hsl(var(--foreground))", primary: { DEFAULT: "hsl(var(--primary))", foreground: "hsl(var(--primary-foreground))", }, secondary: { DEFAULT: "hsl(var(--secondary))", foreground: "hsl(var(--secondary-foreground))", }, destructive: { DEFAULT: "hsl(var(--destructive))", foreground: "hsl(var(--destructive-foreground))", }, muted: { DEFAULT: "hsl(var(--muted))", foreground: "hsl(var(--muted-foreground))", }, accent: { DEFAULT: "hsl(var(--accent))", foreground: "hsl(var(--accent-foreground))", }, popover: { DEFAULT: "hsl(var(--popover))", foreground: "hsl(var(--popover-foreground))", }, card: { DEFAULT: "hsl(var(--card))", foreground: "hsl(var(--card-foreground))", }, }, borderRadius: { lg: "var(--radius)", md: "calc(var(--radius) - 2px)", sm: "calc(var(--radius) - 4px)", }, keyframes: { "accordion-down": { from: { height: 0 }, to: { height: "var(--radix-accordion-content-height)" }, }, "accordion-up": { from: { height: "var(--radix-accordion-content-height)" }, to: { height: 0 }, }, }, animation: { "accordion-down": "accordion-down 0.2s ease-out", "accordion-up": "accordion-up 0.2s ease-out", }, backgroundColor: { 'glass': 'rgba(255, 255, 255, 0.7)', }, backdropFilter: { 'blur': 'blur(10px)', }, boxShadow: { 'glass': '0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06)', }, }, }, plugins: [ require("tailwindcss-animate"), function({ addUtilities }) { const newUtilities = { '.backdrop-blur': { 'backdrop-filter': 'blur(10px)', }, } addUtilities(newUtilities) } ], } ================================================ FILE: frontend/tsconfig.json ================================================ { "compilerOptions": { "target": "ES6", "module": "CommonJS", "moduleResolution": "node", "strict": true, "esModuleInterop": true, "skipLibCheck": true, "forceConsistentCasingInFileNames": true, "outDir": "./dist", "rootDir": "./src", "jsx": "react", "sourceMap": true, "baseUrl": ".", "types": ["node"], "paths": { "@/*": ["src/*"] } }, "include": ["src/**/*"], "exclude": ["node_modules"] } ================================================ FILE: frontend/webpack.config.js ================================================ const path = require('path'); const CopyWebpackPlugin = require('copy-webpack-plugin'); module.exports = { mode: 'production', entry: './src/renderer.tsx', target: 'electron-renderer', devtool: 'source-map', module: { rules: [ { test: /\.ts(x?)$/, include: /src/, use: [{ loader: 'ts-loader' }] }, { test: /\.css$/, use: ['style-loader', 'css-loader', 'postcss-loader'] }, { test: /\.(png|jpe?g|gif|svg)$/i, type: 'asset/resource', }, ] }, output: { path: path.join(__dirname, 'dist'), filename: 'renderer.js' }, resolve: { extensions: ['.ts', '.tsx', '.js'], alias: { '@': path.resolve(__dirname, 'src'), } }, plugins: [ new CopyWebpackPlugin({ patterns: [ { from: 'src/icon-dark.png', to: 'icon-dark.png' }, { from: 'src/icon-light.png', to: 'icon-light.png' }, ], }), ], }; ================================================ FILE: readme.md ================================================ # SayKey [简体中文](./readme_zh.md)|English SayKey is a tool that turns your speech into text. It works fast, accurately, and without the internet. It uses [SenseVoice](https://github.com/FunAudioLLM/SenseVoice) to do this. ![python3.10](https://img.shields.io/badge/python-3.10-green.svg) ![Windows](https://img.shields.io/badge/Windows-supported-blue.svg) --- ## Key Features - ⚡ **Super Fast**: Convert speech to text in real-time. - 🎯 **Accurate**: Enjoy precise transcriptions. - 🔒 **100% Offline**: Your data stays on your device. - ⌨️ **Hotkey Activated**: Start dictation with a simple keyboard shortcut. - ✨ **Smart Punctuation**: Automatically adds punctuation to your text. - 🛠️ **Customizable**: Easy-to-use settings for a personalized experience. --- ## Quick Start Guide 1. [Download SayKey](https://github.com/WenJing95/SayKey/releases/download/v1.0.1/SayKey.zip) Or visit the [Releases](https://github.com/WenJing95/SayKey/releases) page and download the latest `SayKey.zip`. 2. Extract the `SayKey.zip` file. 3. Run `SayKey.exe`. 4. If Windows Defender shows "Windows protected your PC": - Click **More info** → **Run anyway**. 5. Look for the white capsule-shaped icon above your taskbar. 6. Place the text cursor where you want to type. 7. Hold `Ctrl+Q`, speak, and release `Ctrl+Q` to convert speech to text! For a detailed setup guide, check out the [Installation Wiki](https://github.com/WenJing95/SayKey/wiki/SayKey-Installation-Guide). --- ## System Requirements - **OS**: Windows 10 or later - **Memory**: At least 4 GB RAM (8 GB recommended) - **Disk**: 1.5 GB free disk space - **CPU**: x86-64 CPU with AVX support recommended See the [Installation Guide](https://github.com/WenJing95/SayKey/wiki/SayKey-Installation-Guide) for the most up-to-date information. --- ## Usage ### Start voice typing 1. Make sure `SayKey.exe` is running and you see the capsule icon above the taskbar. 2. Focus any text input (Notepad, Word, browser, chat app, etc.). 3. Press and hold `Ctrl+Q` to start recording. 4. Speak clearly into your microphone. 5. Release `Ctrl+Q`. SayKey will recognize your speech and type the text at the cursor position. ### Select microphone 1. Right-click the capsule icon. 2. Click **Microphone**. 3. Choose the device you want to use. ### Change the hotkey - Use the settings in the desktop app, or - Call the HTTP API [`POST /set_hotkey`](#post-set_hotkey) if you are integrating SayKey programmatically. --- ## For Developers SayKey is open-source and we welcome contributions. ### Clone the repository ```bash git clone https://github.com/WenJing95/SayKey.git cd SayKey ``` ### Dependencies - Python **3.10** - Node.js (latest LTS) - Git ### Backend setup ```bash cd backend cd CT-Transformer-punctuation pip install -e . pip install -r requirements.txt ``` Start the backend server: ```bash python main.py --sense-voice=./sherpa-onnx/model.int8.onnx --tokens=./sherpa-onnx/tokens.txt ``` You should see output similar to: ```text SayKey is running. Hold ctrl+q to start recording, release to recognize. Important: Ensure the cursor is in the desired input location before using voice typing. INFO: Uvicorn running on http://localhost:58652 (Press CTRL+C to quit) ``` ### Command-line arguments (backend) Required: - `--tokens`: Path to the `tokens.txt` file for the speech model. - `--sense-voice`: Path to the SenseVoice `model.onnx`. Optional: - `--num-threads`: Number of threads (default: `4`). - `--microphone-index`: Index of the microphone to use. If not specified, the system default microphone is used. - `--hotkey`: Hotkey combination to start recording (default: `ctrl+q`). - `--api-port`: Port number for the API server (default: `58652`). - `--punc-model-dir`: Directory path for punctuation model files (default: `./punc-onnx`). - `--host`: Host address for the API server (default: `localhost`). --- ## HTTP API The backend exposes a small HTTP API on `--api-port` (default `58652`). Base URL: `http://localhost:58652` ### `GET /ping` Health check to verify the backend is alive. ```bash curl http://localhost:58652/ping ``` Response: ```json {"status": "alive"} ``` ### `GET /list_audio_devices` List available audio input devices. ```bash curl http://localhost:58652/list_audio_devices ``` Example response: ```json { "devices": [ { "index": 0, "name": "Microphone (Realtek High Definition Audio)", "is_current": true }, { "index": 1, "name": "Stereo Mix (Realtek High Definition Audio)", "is_current": false } ] } ``` ### `POST /set_audio_device` Set the current microphone by index. ```bash curl -X POST http://localhost:58652/set_audio_device \ -H "Content-Type: application/json" \ -d '{"index": 1}' ``` ### `POST /set_hotkey` Configure the hotkey used to start and stop recording. ```bash curl -X POST http://localhost:58652/set_hotkey \ -H "Content-Type: application/json" \ -d '{"hotkey": "ctrl+q"}' ``` ### `GET /get_hotkey` Retrieve the current hotkey configuration. ```bash curl http://localhost:58652/get_hotkey ``` Example response: ```json {"hotkey": "ctrl+q"} ``` --- ## Building & Packaging ### Package backend (Windows) ```bash cd backend ./build_onefile.bat ``` ### Frontend dev & build ```bash cd frontend npm install # Run in development npm run build npm start # Package for distribution npm run build npm run electron:build ``` ### Create a full release folder 1. Copy everything from `backend\dist`. 2. Copy everything from `frontend\release\win-unpacked`. 3. Place them in the same directory. 4. Run `SayKey.exe`. --- ## FAQ **Nothing happens when I hold `Ctrl+Q`.** - Check that SayKey is running (capsule icon is visible). - Make sure your cursor is in a text field. - Try switching to another microphone in the tray menu. **Windows says "protected your PC" and blocks the app.** - Click **More info** → **Run anyway** if you trust the binary from this repository. --- ## Contributing We welcome issues and pull requests. 1. Fork the repository. 2. Create a feature branch: ```bash git checkout -b feature/your-feature ``` 3. Commit your changes and push the branch. 4. Open a Pull Request. --- ## License SayKey is MIT licensed. See [`LICENSE.txt`](./LICENSE.txt) for details. --- ## Acknowledgements - [SenseVoice](https://github.com/FunAudioLLM/SenseVoice) for the speech-to-text engine. - [CT-Transformer-punctuation](https://github.com/lovemefan/CT-Transformer-punctuation) by [lovemefan](https://github.com/lovemefan/) for punctuation capabilities. ================================================ FILE: readme_zh.md ================================================ # SayKey 简体中文|[English](./readme.md) SayKey 是一个语音输入法,为你提供快速、准确、完全离线的语音转文字体验。由 [SenseVoice](https://github.com/FunAudioLLM/SenseVoice) 驱动。 ![python3.10](https://img.shields.io/badge/python-3.10-green.svg) ![Windows](https://img.shields.io/badge/Windows-supported-blue.svg) --- ## 主要特性 - ⚡ **快速识别**:实时将语音转换为文字 - 🎯 **高度准确**:享受精确的转录体验 - 🔒 **完全离线**:你的数据始终保存在本地设备 - ⌨️ **热键激活**:通过简单快捷键即可开始听写 - ✨ **智能标点**:自动为文本添加标点符号 - 🛠️ **灵活配置**:易于使用的设置,满足个性化需求 --- ## 快速开始指南 1. [下载 SayKey](https://github.com/WenJing95/SayKey/releases/download/v1.0.1/SayKey.zip) 或前往 [Releases 页面](https://github.com/WenJing95/SayKey/releases) 下载最新的 `SayKey.zip`。 2. 解压 `SayKey.zip` 文件。 3. 双击运行 `SayKey.exe`。 4. 如果 Windows Defender 提示“已保护你的电脑”: - 点击 **更多信息** → **仍要运行**。 5. 在任务栏上方找到白色胶囊形状的图标,确认程序已启动。 6. 将光标移动到你想输入文字的位置。 7. 按住 `Ctrl+Q` 开始说话,松开 `Ctrl+Q` 即可完成识别并输出文字。 更详细的安装说明请参考 [手把手安装指南](https://github.com/WenJing95/SayKey/wiki/SayKey-%E5%AE%89%E8%A3%85%E6%8C%87%E5%8D%97)。 --- ## 系统要求 - **操作系统**:Windows 10 或更高版本 - **内存**:至少 4 GB(推荐 8 GB 及以上) - **磁盘空间**:1.5 GB 可用空间 - **CPU**:推荐支持 AVX 指令集的 x86-64 处理器 完整信息以 [安装指南](https://github.com/WenJing95/SayKey/wiki/SayKey-%E5%AE%89%E8%A3%85%E6%8C%87%E5%8D%97) 为准。 --- ## 使用说明 ### 开始语音输入 1. 确认 `SayKey.exe` 正在运行(任务栏上方能看到胶囊图标)。 2. 打开任何可以输入文字的应用(记事本、Word、浏览器输入框、聊天软件等)。 3. 将输入光标放在目标位置。 4. 按住 `Ctrl+Q` 开始录音,对着麦克风说话。 5. 松开 `Ctrl+Q`,SayKey 会进行识别并将文字插入光标处。 ### 选择麦克风设备 1. 在任务栏上方找到白色胶囊图标。 2. 右键点击图标。 3. 选择「麦克风」菜单。 4. 在列表中选择你希望使用的音频输入设备。 ### 修改快捷键 - 可以通过桌面应用中的设置界面修改,或者 - 通过 HTTP API [`POST /set_hotkey`](#post-set_hotkey) 在脚本或工具中进行配置。 --- ## 开发者指南 SayKey 是一个开源项目,欢迎二次开发和贡献代码。 ### 克隆仓库 ```bash git clone https://github.com/WenJing95/SayKey.git cd SayKey ``` ### 开发依赖 - Python **3.10** - Node.js(最新 LTS 版本) - Git ### 配置后端开发环境 ```bash cd backend cd CT-Transformer-punctuation pip install -e . pip install -r requirements.txt ``` 启动后端服务器: ```bash python main.py --sense-voice=./sherpa-onnx/model.int8.onnx --tokens=./sherpa-onnx/tokens.txt ``` 启动成功后,你会看到类似输出: ```text SayKey is running. Hold ctrl+q to start recording, release to recognize. Important: Ensure the cursor is in the desired input location before using voice typing. INFO: Uvicorn running on http://localhost:58652 (Press CTRL+C to quit) ``` ### 命令行参数(后端) 必需参数: - `--tokens`:语音识别模型所需的 `tokens.txt` 文件路径。 - `--sense-voice`:SenseVoice 的 `model.onnx` 文件路径。 可选参数: - `--num-threads`:推理线程数(默认:`4`)。 - `--microphone-index`:使用的麦克风索引(未指定则使用系统默认设备)。 - `--hotkey`:开始录音的快捷键组合(默认:`ctrl+q`)。 - `--api-port`:API 服务端口(默认:`58652`)。 - `--punc-model-dir`:标点模型文件目录(默认:`./punc-onnx`)。 - `--host`:API 服务监听地址(默认:`localhost`)。 --- ## HTTP API 后端在 `--api-port`(默认 `58652`)端口提供一组 HTTP 接口,方便其他前端或 Agent 集成。 基础地址:`http://localhost:58652` ### `GET /ping` 健康检查,确认后端服务是否存活。 ```bash curl http://localhost:58652/ping ``` 响应示例: ```json {"status": "alive"} ``` ### `GET /list_audio_devices` 列出可用音频输入设备。 ```bash curl http://localhost:58652/list_audio_devices ``` 响应示例: ```json { "devices": [ { "index": 0, "name": "Microphone (Realtek High Definition Audio)", "is_current": true }, { "index": 1, "name": "Stereo Mix (Realtek High Definition Audio)", "is_current": false } ] } ``` ### `POST /set_audio_device` 根据索引设置当前麦克风设备。 ```bash curl -X POST http://localhost:58652/set_audio_device \ -H "Content-Type: application/json" \ -d '{"index": 1}' ``` ### `POST /set_hotkey` 配置用于开始/停止录音的快捷键组合。 ```bash curl -X POST http://localhost:58652/set_hotkey \ -H "Content-Type: application/json" \ -d '{"hotkey": "ctrl+q"}' ``` ### `GET /get_hotkey` 获取当前配置的快捷键。 ```bash curl http://localhost:58652/get_hotkey ``` 响应示例: ```json {"hotkey": "ctrl+q"} ``` --- ## 构建与发布 ### 打包后端(Windows 环境) ```bash cd backend ./build_onefile.bat ``` ### 配置前端开发环境 ```bash cd frontend npm install # 开发模式 npm run build npm start # 打包发布 npm run build npm run electron:build ``` ### 组合为最终发布目录 1. 将 `backend\dist` 目录中的所有文件拷贝到目标目录。 2. 将 `frontend\release\win-unpacked` 目录中的所有文件拷贝到同一目录。 3. 在该目录下运行 `SayKey.exe` 即可启动应用。 --- ## 常见问题(FAQ) **按住 `Ctrl+Q` 没有任何反应?** - 确认程序已启动(任务栏上有胶囊图标)。 - 光标是否在一个可输入文字的文本框中。 - 尝试在托盘菜单中切换到其他麦克风设备。 **Windows 提示“已保护你的电脑”?** - 如果你是从本仓库的 Releases 页面下载的原始压缩包,可以点击 **更多信息** → **仍要运行**。 --- ## 贡献 欢迎任何形式的贡献,包括: - 提交 Issue 报告 Bug 或提出新需求 - 提交 Pull Request 修复问题或增加功能 - 改进文档或编写教程分享使用经验 推荐开发流程: 1. Fork 本仓库; 2. 创建功能分支: ```bash git checkout -b feature/your-feature ``` 3. 提交修改并推送分支; 4. 在 GitHub 上发起 Pull Request。 --- ## 许可证 SayKey 使用 [MIT 许可证](./LICENSE.txt) 发布,你可以在遵守协议的前提下自由使用、修改和分发本项目。 --- ## 致谢 - 感谢 [SenseVoice](https://github.com/FunAudioLLM/SenseVoice) 提供的语音转文字引擎; - 感谢 [lovemefan](https://github.com/lovemefan/) 开发的 [CT-Transformer-punctuation](https://github.com/lovemefan/CT-Transformer-punctuation) 项目,为本项目提供智能标点能力。